Searched refs:local (Results 1 - 24 of 24) sorted by relevance

/PHP_TRUNK/ext/oci8/tests/
H A Ddetails.inc15 include(dirname(__FILE__)."/details_local.inc"); // this file is not part of the source distribution; make it your own local variant of details.inc
/PHP_TRUNK/ext/sqlite3/libsqlite/
H A Dsqlite3.c13616 sqlite3_result_error(pCtx, "local time unavailable", -1);
13676 ** show local time.
18053 ** State information local to the memory allocation subsystem.
22801 OSTRACE(( "TEST WR-LOCK %d %d (local)\n", pFile->h, r ));
22951 static UconvObject uclCp = NULL; /* convert between local codepage and UCS-2 */
22976 ** Helper function to convert UTF-8 filenames to local OS/2 codepage.
23002 ** Helper function to convert filenames from local codepage to UTF-8.
23591 /* Undo the local locks */
23620 /* Get the local shared locks */
23636 ** also mark the local connectio
31539 winceLock local; /* Locks obtained by this instance of winFile */ member in struct:winFile
[all...]
/PHP_TRUNK/win32/build/
H A Dprojectgen.js2 function check_duplicates(local, core)
4 if (!local) {
8 arr = local.split(" ");
306 /* pick up local flags and libs */
597 /* now populate the bases in the 'local' lines */
/PHP_TRUNK/ext/intl/
H A Dphp_intl.c478 ZEND_ARG_INFO( 0, local )
/PHP_TRUNK/ext/intl/timezone/
H A Dtimezone_class.cpp432 ZEND_ARG_INFO(0, local)
H A Dtimezone_methods.cpp456 zend_bool local; local
464 "Odbzz", &object, TimeZone_ce_ptr, &date, &local, &rawOffsetArg,
473 to->utimezone->getOffset(date, (UBool) local, rawOffset, dstOffset,
/PHP_TRUNK/ext/dom/
H A Ddocument.c1155 xmlChar *local; local
1165 local = xmlCharStrndup(name, name_len);
1166 dom_namednode_iter(intern, 0, namednode, NULL, local, NULL TSRMLS_CC);
1364 xmlChar *local, *nsuri; local
1374 local = xmlCharStrndup(name, name_len);
1376 dom_namednode_iter(intern, 0, namednode, NULL, local, nsuri TSRMLS_CC);
H A Delement.c642 xmlChar *local; local
652 local = xmlCharStrndup(name, name_len);
653 dom_namednode_iter(intern, 0, namednode, NULL, local, NULL TSRMLS_CC);
1036 xmlChar *local, *nsuri; local
1046 local = xmlCharStrndup(name, name_len);
1048 dom_namednode_iter(intern, 0, namednode, NULL, local, nsuri TSRMLS_CC);
H A Dnodelist.c87 curnode = dom_get_elements_by_tag_name_ns_raw(nodep, objmap->ns, objmap->local, &count, -1);
158 itemnode = dom_get_elements_by_tag_name_ns_raw(nodep, objmap->ns, objmap->local, &count, index);
H A Dphp_dom.h85 xmlChar *local; member in struct:_dom_nnodemap_object
113 xmlNode *dom_get_elements_by_tag_name_ns_raw(xmlNodePtr nodep, char *ns, char *local, int *cur, int index);
120 void dom_namednode_iter(dom_object *basenode, int ntype, dom_object *intern, xmlHashTablePtr ht, xmlChar *local, xmlChar *ns TSRMLS_DC);
H A Dphp_dom.c1110 void dom_namednode_iter(dom_object *basenode, int ntype, dom_object *intern, xmlHashTablePtr ht, xmlChar *local, xmlChar *ns TSRMLS_DC) /* {{{ */ argument
1128 mapptr->local = local;
1248 if (objmap->local) {
1249 xmlFree(objmap->local);
1291 objmap->local = NULL;
1476 xmlNode *dom_get_elements_by_tag_name_ns_raw(xmlNodePtr nodep, char *ns, char *local, int *cur, int index) /* {{{ */ argument
1482 if (xmlStrEqual(nodep->name, (xmlChar *)local) || xmlStrEqual((xmlChar *)"*", (xmlChar *)local)) {
1491 ret = dom_get_elements_by_tag_name_ns_raw(nodep->children, ns, local, cu
[all...]
H A Ddom_iterators.c226 curnode = dom_get_elements_by_tag_name_ns_raw(basenode, objmap->ns, objmap->local, &previndex, iter->index);
306 curnode = dom_get_elements_by_tag_name_ns_raw(nodep, objmap->ns, objmap->local, &curindex, 0);
/PHP_TRUNK/ext/ftp/
H A Dphp_ftp.c849 Retrieves a file from the FTP server and writes it to a local file */
856 char *local, *remote; local
860 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rppl|l", &z_ftp, &local, &local_len, &remote, &remote_len, &mode, &resumepos) == FAILURE) {
877 outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt+" : "rb+", REPORT_ERRORS, NULL);
879 outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "wt" : "wb", REPORT_ERRORS, NULL);
891 outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "wt" : "wb", REPORT_ERRORS, NULL);
895 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error opening %s", local);
901 VCWD_UNLINK(local);
912 Retrieves a file from the FTP server nbhronly and writes it to a local file */
919 char *local, *remot local
1122 char *remote, *local; local
1175 char *remote, *local; local
[all...]
/PHP_TRUNK/ext/readline/
H A Dreadline_cli.c48 #include <unixlib/local.h>
507 - future: respect scope ("php > function foo() { $[tab]" should only expand to local variables...)
/PHP_TRUNK/ext/standard/
H A Dfilestat.c860 char *local; local
867 if ((wrapper = php_stream_locate_url_wrapper(filename, &local, 0 TSRMLS_CC)) == &php_plain_files_wrapper && php_check_open_basedir(local TSRMLS_CC)) {
877 RETURN_BOOL(VCWD_ACCESS(local, F_OK) == 0);
882 RETURN_BOOL(VCWD_ACCESS(local, W_OK) == 0);
887 RETURN_BOOL(VCWD_ACCESS(local, R_OK) == 0);
892 RETURN_BOOL(VCWD_ACCESS(local, X_OK) == 0);
/PHP_TRUNK/sapi/milter/
H A Dphp_milter.c57 #include <unixlib/local.h>
/PHP_TRUNK/sapi/webjames/
H A Dwebjames.c28 #include <unixlib/local.h>
/PHP_TRUNK/ext/phar/
H A Dphar.c1266 spprintf(error, 0, "Cannot create a phar archive from a URL like \"%s\". Phar objects can only be created from local files", fname);
2414 /* verify local file header */
2415 phar_zip_file_header local; local
2419 spprintf(error, 0, "phar error: unable to open zip-based phar archive \"%s\" to verify local file header for file \"%s\"", idata->phar->fname, entry->filename);
2424 if (sizeof(local) != php_stream_read(phar_get_entrypfp(idata->internal_file TSRMLS_CC), (char *) &local, sizeof(local))) {
2426 spprintf(error, 0, "phar error: internal corruption of zip-based phar \"%s\" (cannot read local file header for file \"%s\")", idata->phar->fname, entry->filename);
2431 if (((PHAR_ZIP_16(local.flags)) & 0x8) == 0x8) {
2433 entry->header_offset + sizeof(local)
[all...]
H A Dzip.c92 zip_dirent.c -- read directory entry (local or central), clean dirent
419 /* copy file contents + local headers and zip comment, if any, to be hashed for signature */
560 /* verify local file header */
561 phar_zip_file_header local; local
567 if (sizeof(local) != php_stream_read(fp, (char *) &local, sizeof(local))) {
569 PHAR_ZIP_FAIL("phar error: internal corruption of zip-based phar (cannot read local file header for alias)");
572 /* verify local header */
573 if (entry.filename_len != PHAR_GET_16(local
777 phar_zip_file_header local; local
[all...]
/PHP_TRUNK/ext/zip/lib/
H A Dzip_dirent.c2 zip_dirent.c -- read directory entry (local or central), clean dirent
218 If local != 0, it reads a local header instead of a central
229 unsigned char **bufp, zip_uint32_t *leftp, int local,
237 if (local)
260 if (memcmp(cur, (local ? LOCAL_MAGIC : CENTRAL_MAGIC), 4) != 0) {
269 if (!local)
289 if (local) {
427 If localp != 0, it writes a local header instead of a central
220 _zip_dirent_read(struct zip_dirent *zde, FILE *fp, unsigned char **bufp, zip_uint32_t *leftp, int local, struct zip_error *error) argument
/PHP_TRUNK/sapi/cli/
H A Dphp_cli_server.c38 #include <unixlib/local.h>
H A Dphp_cli.c74 #include <unixlib/local.h>
/PHP_TRUNK/sapi/cgi/
H A Dcgi_main.c82 # include <unixlib/local.h>
/PHP_TRUNK/sapi/fpm/fpm/
H A Dfpm_main.c89 # include <unixlib/local.h>

Completed in 276 milliseconds