Searched refs:plen (Results 1 - 6 of 6) sorted by relevance
| /PHP_TRUNK/ext/interbase/ |
| H A D | ibase_service.c | 213 int hlen, ulen, plen, spb_len; local 221 &host, &hlen, &user, &ulen, &pass, &plen)) { 229 user, isc_spb_password, (char)plen, pass, host);
|
| /PHP_TRUNK/main/streams/ |
| H A D | glob_wrapper.c | 50 PHPAPI char* _php_glob_stream_get_path(php_stream *stream, int copy, int *plen STREAMS_DC TSRMLS_DC) /* {{{ */ 55 if (plen) { 56 *plen = pglob->path_len; 64 if (plen) { 65 *plen = 0; 72 PHPAPI char* _php_glob_stream_get_pattern(php_stream *stream, int copy, int *plen STREAMS_DC TSRMLS_DC) /* {{{ */ 77 if (plen) { 78 *plen = pglob->pattern_len; 86 if (plen) { 87 *plen [all...] |
| H A D | memory.c | 606 size_t mlen, dlen, plen, vlen; local 646 plen = semi - path; 647 add_assoc_stringl(meta, "mediatype", path, plen, 1); 648 mlen -= plen; 649 path += plen; 674 plen = sep - path; 675 vlen = (semi ? semi - sep : mlen - plen) - 1 /* '=' */; 676 key = estrndup(path, plen); 677 add_assoc_stringl_ex(meta, key, plen + 1, sep + 1, vlen, 1); 679 plen [all...] |
| H A D | php_stream_glob_wrapper.h | 26 PHPAPI char* _php_glob_stream_get_path(php_stream *stream, int copy, int *plen STREAMS_DC TSRMLS_DC); 27 #define php_glob_stream_get_path(stream, copy, plen) _php_glob_stream_get_path((stream), (copy), (plen) STREAMS_CC TSRMLS_CC) 29 PHPAPI char* _php_glob_stream_get_pattern(php_stream *stream, int copy, int *plen STREAMS_DC TSRMLS_DC); 30 #define php_glob_stream_get_pattern(stream, copy, plen) _php_glob_stream_get_pattern((stream), (copy), (plen) STREAMS_CC TSRMLS_CC)
|
| /PHP_TRUNK/ext/fileinfo/libmagic/ |
| H A D | apprentice.c | 2330 size_t plen = sizeof(m->value.s); local 2332 char *pmax = p + plen - 1;
|
| /PHP_TRUNK/ext/pdo/ |
| H A D | pdo_dbh.c | 278 int plen = 0; local 286 plen = spprintf(&hashkey, 0, "PDO:DBH:DSN=%s:%s:%s:%s", data_source, 294 plen = spprintf(&hashkey, 0, "PDO:DBH:DSN=%s:%s:%s", data_source, 302 if (SUCCESS == zend_hash_find(&EG(persistent_list), hashkey, plen+1, (void*)&le)) { 326 if (!(pdbh->persistent_id = pemalloc(plen + 1, 1))) { 329 memcpy((char *)pdbh->persistent_id, hashkey, plen+1); 330 pdbh->persistent_id_len = plen+1;
|
Completed in 26 milliseconds