Home
last modified time | relevance | path

Searched refs:b (Results 151 – 175 of 2383) sorted by last modified time

12345678910>>...96

/PHP-5.5/sapi/cli/
H A Dphp_cli_server.c384 static int status_comp(const void *a, const void *b) /* {{{ */ in status_comp() argument
387 …ver_http_response_status_code_pair *pb = (const php_cli_server_http_response_status_code_pair *) b; in status_comp()
H A Dphp_http_parser.c27 # define MIN(a,b) ((a) < (b) ? (a) : (b)) argument
/PHP-5.5/sapi/apache_hooks/
H A Dmod_php5.c878 php_per_dir_config *b = (php_per_dir_config *) basev; in php_merge_dir() local
880 …zend_hash_merge_ex((HashTable *) a->ini_settings, (HashTable *) b->ini_settings, (copy_ctor_func_t… in php_merge_dir()
881 a->headers_handlers = (a->headers_handlers.top)?a->headers_handlers:b->headers_handlers; in php_merge_dir()
882 a->auth_handlers = (a->auth_handlers.top)?a->auth_handlers:b->auth_handlers; in php_merge_dir()
883 a->access_handlers = (a->access_handlers.top)?a->access_handlers:b->access_handlers; in php_merge_dir()
884 a->type_handlers = (a->type_handlers.top)?a->type_handlers:b->type_handlers; in php_merge_dir()
885 a->fixup_handlers = (a->fixup_handlers.top)?a->fixup_handlers:b->fixup_handlers; in php_merge_dir()
886 a->logger_handlers = (a->logger_handlers.top)?a->logger_handlers:b->logger_handlers; in php_merge_dir()
887 a->post_read_handlers = (a->post_read_handlers.top)?a->post_read_handlers:b->post_read_handlers; in php_merge_dir()
888 a->response_handlers = (a->response_handlers.top)?a->response_handlers:b->response_handlers; in php_merge_dir()
/PHP-5.5/sapi/cgi/
H A DCHANGES9 /info.php/test?a=b will fail to work
H A DREADME.FastCGI31 ./php -b 127.0.0.1:8002
40 ./php -b :8002
41 ./php -b "*:8002"
H A Dcgi_main.c224 static int module_name_cmp(const void *a, const void *b TSRMLS_DC) in module_name_cmp()
227 Bucket *s = *((Bucket **) b); in module_name_cmp()
H A Dfastcgi.c199 fcgi_hash_buckets *b; in fcgi_hash_destroy() local
202 b = h->buckets; in fcgi_hash_destroy()
203 while (b) { in fcgi_hash_destroy()
204 fcgi_hash_buckets *q = b; in fcgi_hash_destroy()
205 b = b->next; in fcgi_hash_destroy()
276 fcgi_hash_buckets *b = (fcgi_hash_buckets*)malloc(sizeof(fcgi_hash_buckets)); in fcgi_hash_set() local
277 b->idx = 0; in fcgi_hash_set()
278 b->next = h->buckets; in fcgi_hash_set()
279 h->buckets = b; in fcgi_hash_set()
/PHP-5.5/sapi/cgi/tests/
H A D004.phpt39 <b>Fatal error</b>: Cannot access private property test::$pri in <b>%s004.test.php</b> on line <b>…
H A D006.phpt59 <b>Parse error</b>: %s expecting %s{%s in <b>%s006.test.php</b> on line <b>5</b><br />
/PHP-5.5/sapi/apache2filter/
H A Dsapi_apache2.c69 apr_bucket *b; in php_apache_sapi_ub_write() local
84 APR_BRIGADE_INSERT_TAIL(bb, b); in php_apache_sapi_ub_write()
253 apr_bucket *b; in php_apache_sapi_flush() local
278 b = apr_bucket_flush_create(ba); in php_apache_sapi_flush()
279 APR_BRIGADE_INSERT_TAIL(bb, b); in php_apache_sapi_flush()
364 apr_bucket *b; in php_input_filter() local
385 for (b = APR_BRIGADE_FIRST(bb); b != APR_BRIGADE_SENTINEL(bb); b = APR_BUCKET_NEXT(b)) { in php_input_filter()
467 apr_bucket *b; in php_output_filter() local
563 APR_BRIGADE_INSERT_TAIL(pbb->bb, b); in php_output_filter()
720 apr_bucket *b = NULL; in php_apache_read_stream() local
[all …]
/PHP-5.5/
H A Drun-tests.php920 function test_sort($a, $b) argument
925 $b = test_name($b);
928 …$tb = strpos($b, "{$cwd}/tests") === 0 ? 1 + (strpos($b, "{$cwd}/tests/run-test") === 0 ? 1 : 0) :…
931 return strcmp($a, $b);
/PHP-5.5/sapi/aolserver/
H A DREADME57 b) Enabling PHP
/PHP-5.5/main/streams/
H A Dstreams.c1394 int b; in _php_stream_passthru() local
1405 if (0 < (b = PHPWRITE(p, MIN(mapped - bcount, INT_MAX)))) { in _php_stream_passthru()
1406 bcount += b; in _php_stream_passthru()
1408 } while (b > 0 && mapped > bcount); in _php_stream_passthru()
1416 while ((b = php_stream_read(stream, buf, sizeof(buf))) > 0) { in _php_stream_passthru()
1417 PHPWRITE(buf, b); in _php_stream_passthru()
1418 bcount += b; in _php_stream_passthru()
2264 PHPAPI int php_stream_dirent_alphasort(const char **a, const char **b) argument
2266 return strcoll(*a, *b);
2274 return strcoll(*b, *a);
[all …]
/PHP-5.5/main/
H A Dwin95nt.h47 #define mkdir(a, b) _mkdir(a) argument
52 # define getcwd(a, b) _getcwd(a, b) argument
H A Dphp_network.h48 # define ftruncate(a, b) chsize(a, b) argument
H A Dphp_scandir.c53 PHPAPI int php_alphasort(const struct dirent **a, const struct dirent **b) in php_alphasort() argument
55 return strcoll((*a)->d_name,(*b)->d_name); in php_alphasort()
60 …r) (const struct dirent *entry), int (*compare) (const struct dirent **a, const struct dirent **b)) in php_scandir() argument
H A Dphp_scandir.h45 …) (const struct dirent *entry), int (*compare) (const struct dirent **a, const struct dirent **b));
51 PHPAPI int php_alphasort(const struct dirent **a, const struct dirent **b);
H A Dphp_streams.h354 PHPAPI int php_stream_dirent_alphasort(const char **a, const char **b);
355 PHPAPI int php_stream_dirent_alphasortr(const char **a, const char **b);
358 int (*compare) (const char **a, const char **b) TSRMLS_DC);
H A Dmergesort.c149 b = f1, t = l1; in php_mergesort()
153 b = f2, t = l2; in php_mergesort()
157 while ((b += size) < t && cmp(q, b TSRMLS_CC) >sense) in php_mergesort()
169 b = p; in php_mergesort()
177 b = p; in php_mergesort()
178 while (t > b+size) { in php_mergesort()
183 b = p; in php_mergesort()
191 b = p; in php_mergesort()
192 COPY: b = t; in php_mergesort()
240 #define swap(a, b) { \ argument
[all …]
H A Dnetwork.c404 static inline void sub_times(struct timeval a, struct timeval b, struct timeval *result) argument
406 result->tv_usec = a.tv_usec - b.tv_usec;
411 result->tv_sec = a.tv_sec - b.tv_sec;
H A Dphp.h152 #define CREATE_MUTEX(a, b) argument
H A DSAPI.h185 #define sapi_add_header(a, b, c) sapi_add_header_ex((a),(b),(c),1 TSRMLS_CC) argument
/PHP-5.5/ext/zlib/tests/
H A Dzlib_filter_inflate2.phpt9 fwrite($a, b"This is quite the thing ain't it\n");
H A Dgzreadgzwrite.phpt8 $original = str_repeat(b"hallo php",4096);
H A Dgzreadgzwriteplain.phpt8 $original = str_repeat(b"hallo php",4096);

Completed in 114 milliseconds

12345678910>>...96