Home
last modified time | relevance | path

Searched refs:pe (Results 1 – 14 of 14) sorted by relevance

/PHP-5.3/ext/mbstring/libmbfl/mbfl/
H A Dmbfilter.c1977 pe->prevpos = pe->outdev.pos; in mime_header_encoder_block_collector()
1983 n = pe->outdev.pos - pe->linehead + pe->firstindent; in mime_header_encoder_block_collector()
1984 pe->outdev.pos = pe->prevpos; in mime_header_encoder_block_collector()
1991 mbfl_memory_device_strncat(&pe->outdev, pe->lwsp, pe->lwsplen); in mime_header_encoder_block_collector()
1992 pe->linehead = pe->outdev.pos; in mime_header_encoder_block_collector()
2049 n = pe->outdev.pos - pe->linehead + pe->tmpdev.pos + pe->firstindent; in mime_header_encoder_collector()
2052 pe->linehead = pe->outdev.pos; in mime_header_encoder_collector()
2061 n = pe->outdev.pos - pe->linehead + pe->encnamelen + pe->firstindent; in mime_header_encoder_collector()
2064 pe->linehead = pe->outdev.pos; in mime_header_encoder_collector()
2090 if ((pe->outdev.pos - pe->linehead + pe->tmpdev.pos) > 74) { in mime_header_encoder_result()
[all …]
H A Dmbfilter.h239 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.3/sapi/apache2filter/
H A Dapache_config.c124 php_dir_entry *pe; in merge_php_config() local
138 pe = NULL; in merge_php_config()
140 if (zend_hash_find(&n->config, str, str_len, (void **) &pe) == SUCCESS) { in merge_php_config()
141 if (pe->status >= data->status) continue; in merge_php_config()
144 phpapdebug((stderr, "ADDING/OVERWRITING %s (%d vs. %d)\n", str, data->status, pe?pe->status:-1)); in merge_php_config()
153 php_dir_entry *pe; in get_php_config() local
155 if (zend_hash_find(&d->config, name, name_len, (void **) &pe) == SUCCESS) { in get_php_config()
156 return pe->value; in get_php_config()
/PHP-5.3/sapi/apache2handler/
H A Dapache_config.c142 php_dir_entry *pe; in merge_php_config() local
160 pe = NULL; in merge_php_config()
162 if (zend_hash_find(&n->config, str, str_len, (void **) &pe) == SUCCESS) { in merge_php_config()
163 if (pe->status >= data->status) continue; in merge_php_config()
165 phpapdebug((stderr, "ADDING/OVERWRITING %s (%d vs. %d)\n", str, data->status, pe?pe->status:-1)); in merge_php_config()
175 php_dir_entry *pe; in get_php_config() local
177 if (zend_hash_find(&d->config, name, name_len, (void **) &pe) == SUCCESS) { in get_php_config()
178 return pe->value; in get_php_config()
/PHP-5.3/win32/
H A Dglob.c252 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 == EOS) {
272 pe = pm;
274 } else if (*pe == LBRACE)
276 else if (*pe == RBRACE) {
283 if (i != 0 || *pe == EOS) {
288 for (i = 0, pl = pm = ptr; pm <= pe; pm++) {
[all …]
/PHP-5.3/ext/standard/
H A Dbasic_functions.c3448 if (!strncmp(*env, pe->key, pe->key_len) && (*env)[pe->key_len] == '=') { /* found it */ in php_putenv_destructor()
3458 if (!strncmp(pe->key, "TZ", pe->key_len)) { in php_putenv_destructor()
3464 efree(pe->key); in php_putenv_destructor()
4054 putenv_entry pe; local
4079 pe.key_len = strlen(pe.key);
4096 efree(pe.key);
4124 zend_hash_del(&BG(putenv_ht), pe.key, pe.key_len+1);
4129 if (!strncmp(*env, pe.key, pe.key_len) && (*env)[pe.key_len] == '=') { /* found it */
4159 zend_hash_add(&BG(putenv_ht), pe.key, pe.key_len + 1, (void **) &pe, sizeof(putenv_entry), NULL);
4161 if (!strncmp(pe.key, "TZ", pe.key_len)) {
[all …]
H A Dstring.c1198 char *pe; in PHP_FUNCTION() local
1221 pe = BG(strtok_string) + BG(strtok_len); in PHP_FUNCTION()
1223 if (!p || p >= pe) { in PHP_FUNCTION()
1236 if (++p >= pe) { in PHP_FUNCTION()
1246 while (++p < pe) { in PHP_FUNCTION()
/PHP-5.3/ext/standard/tests/strings/
H A Dchunk_split_variation7.phpt69 string(69) "Testi????ng in????valid???? \k a????nd \m???? esca????pe ch????ar????"
H A Dstr_split_variation4.phpt179 string(5) "pe ch"
H A Dchunk_split_variation12.phpt144 …'m sure it'll \work!ng \k esca"To check " in heredoc".I'm sure it'll \work!pe char 22"To check " i…
/PHP-5.3/ext/sockets/
H A Dsockets.c620 struct protoent *pe; local
676 if ((pe = getprotobyname("tcp"))) {
677 REGISTER_LONG_CONSTANT("SOL_TCP", pe->p_proto, CONST_CS | CONST_PERSISTENT);
680 if ((pe = getprotobyname("udp"))) {
681 REGISTER_LONG_CONSTANT("SOL_UDP", pe->p_proto, CONST_CS | CONST_PERSISTENT);
/PHP-5.3/ext/xmlwriter/
H A Dphp_xmlwriter.c1703 zend_bool pe = 0; in PHP_FUNCTION() local
1711 &name, &name_len, &content, &content_len, &pe, &pubid, &pubid_len, in PHP_FUNCTION()
1720 &name, &name_len, &content, &content_len, &pe, &pubid, &pubid_len, in PHP_FUNCTION()
1732 …retval = xmlTextWriterWriteDTDEntity(ptr, pe, (xmlChar *)name, (xmlChar *)pubid, (xmlChar *)sysid,… in PHP_FUNCTION()
/PHP-5.3/build/
H A Dshtool1692 for pe in `IFS="$IFS/"; echo $namelist`; do
/PHP-5.3/sapi/thttpd/
H A Dthttpd_patch1765 +#define FIXUP(x) if (hc->x >= oldptr && hc->x < pe) hc->x += d
1771 + char *pe = oldptr + hc->checked_idx;

Completed in 72 milliseconds