| /PHP_5_5/build/ |
| H A D | shtool | 1692 for pe in `IFS="$IFS/"; echo $namelist`; do
|
| /PHP_5_5/sapi/cli/ |
| H A D | php_http_parser.c | 329 const char *p = data, *pe; local 371 for (p=data, pe=data+len; p != pe; p++) { 1434 to_read = MIN(pe - p, (size_t)parser->content_length); 1448 to_read = pe - p; 1519 to_read = MIN(pe - p, (size_t)(parser->content_length));
|
| /PHP_5_5/win32/ |
| H A D | glob.c | 252 const Char *pe, *pm, *pl; local 262 for (i = 0, pe = ++ptr; *pe; pe++) 263 if (*pe == LBRACKET) { 265 for (pm = pe++; *pe != RBRACKET && *pe != EOS; pe++) 267 if (*pe [all...] |
| /PHP_5_5/ext/intl/ |
| H A D | intl_error.c | 247 smart_str intl_parse_error_to_string( UParseError* pe ) 255 assert( pe != NULL ); 258 if( pe->line > 0 ) 261 smart_str_append_long( &ret, (long ) pe->line ); 264 if( pe->offset >= 0 ) { 271 smart_str_append_long( &ret, (long ) pe->offset ); 275 if (pe->preContext[0] != 0 ) { 280 intl_convert_utf16_to_utf8( &buf, &u8len, pe->preContext, -1, &status ); 293 if( pe->postContext[0] != 0 ) 299 intl_convert_utf16_to_utf8( &buf, &u8len, pe [all...] |
| H A D | intl_error.h | 50 smart_str intl_parse_error_to_string( UParseError* pe );
|
| /PHP_5_5/ext/intl/transliterator/ |
| H A D | transliterator.h | 27 smart_str transliterator_parse_error_to_string( UParseError* pe );
|
| /PHP_5_5/ext/mbstring/libmbfl/mbfl/ |
| H A D | mbfilter.c | 2093 struct mime_header_encoder_data *pe = (struct mime_header_encoder_data *)data; local 2095 switch (pe->status2) { 2097 pe->prevpos = pe->outdev.pos; 2098 mbfl_convert_filter_copy(pe->conv2_filter, pe->conv2_filter_backup); 2099 mbfl_convert_filter_copy(pe->encod_filter, pe->encod_filter_backup); 2100 (*pe->conv2_filter->filter_function)(c, pe 2154 struct mime_header_encoder_data *pe = (struct mime_header_encoder_data *)data; local 2202 mime_header_encoder_result(struct mime_header_encoder_data *pe, mbfl_string *result) argument 2236 struct mime_header_encoder_data *pe; local 2318 mime_header_encoder_delete(struct mime_header_encoder_data *pe) argument 2334 mime_header_encoder_feed(int c, struct mime_header_encoder_data *pe) argument 2350 struct mime_header_encoder_data *pe; local [all...] |
| H A D | mbfilter.h | 239 mime_header_encoder_delete(struct mime_header_encoder_data *pe); 242 mime_header_encoder_feed(int c, struct mime_header_encoder_data *pe); 245 mime_header_encoder_result(struct mime_header_encoder_data *pe, mbfl_string *result);
|
| /PHP_5_5/ext/xmlwriter/ |
| H A D | php_xmlwriter.c | 1690 /* {{{ proto bool xmlwriter_write_dtd_entity(resource xmlwriter, string name, string content [, int pe [, string pubid [, string sysid [, string ndataid]]]]) 1701 zend_bool pe = 0; local 1709 &name, &name_len, &content, &content_len, &pe, &pubid, &pubid_len, 1718 &name, &name_len, &content, &content_len, &pe, &pubid, &pubid_len, 1730 retval = xmlTextWriterWriteDTDEntity(ptr, pe, (xmlChar *)name, (xmlChar *)pubid, (xmlChar *)sysid, (xmlChar *)ndataid, (xmlChar *)content);
|
| /PHP_5_5/sapi/apache2filter/ |
| H A D | apache_config.c | 124 php_dir_entry *pe; local 138 pe = NULL; 140 if (zend_hash_find(&n->config, str, str_len, (void **) &pe) == SUCCESS) { 141 if (pe->status >= data->status) continue; 144 phpapdebug((stderr, "ADDING/OVERWRITING %s (%d vs. %d)\n", str, data->status, pe?pe->status:-1)); 153 php_dir_entry *pe; local 155 if (zend_hash_find(&d->config, name, name_len, (void **) &pe) == SUCCESS) { 156 return pe->value;
|
| /PHP_5_5/sapi/apache2handler/ |
| H A D | apache_config.c | 142 php_dir_entry *pe; local 160 pe = NULL; 162 if (zend_hash_find(&n->config, str, str_len, (void **) &pe) == SUCCESS) { 163 if (pe->status >= data->status) continue; 165 phpapdebug((stderr, "ADDING/OVERWRITING %s (%d vs. %d)\n", str, data->status, pe?pe->status:-1)); 175 php_dir_entry *pe; local 177 if (zend_hash_find(&d->config, name, name_len, (void **) &pe) == SUCCESS) { 178 return pe->value;
|
| /PHP_5_5/ |
| H A D | config.sub | 1372 | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
|
| /PHP_5_5/ext/standard/ |
| H A D | string.c | 1271 char *pe; local 1294 pe = BG(strtok_string) + BG(strtok_len); 1296 if (!p || p >= pe) { 1309 if (++p >= pe) { 1319 while (++p < pe) {
|
| H A D | basic_functions.c | 3421 static void php_putenv_destructor(putenv_entry *pe) /* {{{ */ argument 3423 if (pe->previous_value) { 3429 SetEnvironmentVariable(pe->key, "bugbug"); 3431 putenv(pe->previous_value); 3433 efree(pe->previous_value); 3437 unsetenv(pe->key); 3439 SetEnvironmentVariable(pe->key, NULL); 3444 if (!strncmp(*env, pe->key, pe->key_len) && (*env)[pe 4082 putenv_entry pe; local [all...] |