Home
last modified time | relevance | path

Searched refs:remaining (Results 1 – 25 of 33) sorted by relevance

12

/PHP-7.0/ext/standard/tests/filters/
H A Dfilter_errors_user.phpt94 Warning: stream_filter_append(): Unprocessed filter buckets remaining on input brigade in %s
99 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s
116 Warning: stream_filter_append(): Unprocessed filter buckets remaining on input brigade in %s
121 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s
126 Warning: stream_filter_append(): Unprocessed filter buckets remaining on input brigade in %s
131 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s
135 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s
146 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s
151 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s
161 Warning: stream_get_contents(): Unprocessed filter buckets remaining on input brigade in %s
[all …]
/PHP-7.0/sapi/embed/
H A Dphp_embed.c71 size_t remaining = str_length; in php_embed_ub_write() local
74 while (remaining > 0) { in php_embed_ub_write()
75 ret = php_embed_single_write(ptr, remaining); in php_embed_ub_write()
80 remaining -= ret; in php_embed_ub_write()
/PHP-7.0/ext/interbase/
H A Dphp_ibase_udf.c145 int result, remaining = b->blob_total_length, i = 0; in exec_php() local
146 char *code = pemalloc(remaining+1, 1); in exec_php()
149 for (code[remaining] = '\0'; remaining > 0; remaining -= read) in exec_php()
150 b->blob_get_segment(b->blob_handle, &code[i++<<16],min(0x10000,remaining), &read); in exec_php()
/PHP-7.0/ext/standard/tests/file/
H A Dfgets_socket_variation1.phpt37 echo "\n\nClose the server side socket and read the remaining data from the client\n";
61 Close the server side socket and read the remaining data from the client
H A Dfgets_socket_variation2.phpt53 echo "\nClose the server side socket and read the remaining data from the client\n";
68 Close the server side socket and read the remaining data from the client
/PHP-7.0/Zend/tests/
H A Derrmsg_018.phpt14 …bstract method and must therefore be declared abstract or implement the remaining methods (test::f…
H A Dbug44414.phpt15 …stract methods and must therefore be declared abstract or implement the remaining methods (A::foo,…
H A Dbug43323.phpt14 …bstract method and must therefore be declared abstract or implement the remaining methods (bar::ba…
/PHP-7.0/ext/standard/tests/streams/
H A Dstream_get_meta_data_socket_variation4.phpt26 echo "\n\nClose the server side socket and read the remaining data from the client:\n";
76 Close the server side socket and read the remaining data from the client:
H A Dstream_get_meta_data_socket_variation1.phpt30 echo "\n\nClose the server side socket and read the remaining data from the client:\n";
97 Close the server side socket and read the remaining data from the client:
/PHP-7.0/tests/classes/
H A Dinterface_must_be_implemented.phpt17 …bstract method and must therefore be declared abstract or implement the remaining methods (if_a::f…
H A Dabstract_not_declared.phpt15 …bstract method and must therefore be declared abstract or implement the remaining methods (fail::s…
H A Dabstract_derived.phpt20 …bstract method and must therefore be declared abstract or implement the remaining methods (derived…
H A Dabstract_by_interface_001.phpt33 …bstract method and must therefore be declared abstract or implement the remaining methods (MyInter…
H A Dabstract_redeclare.phpt22 …bstract method and must therefore be declared abstract or implement the remaining methods (fail::s…
H A Dabstract_by_interface_002.phpt33 …bstract method and must therefore be declared abstract or implement the remaining methods (MyInter…
H A Dabstract_static.phpt34 …bstract method and must therefore be declared abstract or implement the remaining methods (fail::f…
H A Dinterfaces_002.phpt29 …bstract method and must therefore be declared abstract or implement the remaining methods (Throwab…
/PHP-7.0/Zend/tests/traits/bugs/
H A Dabstract-methods01.phpt19 …bstract method and must therefore be declared abstract or implement the remaining methods (%s) in …
/PHP-7.0/Zend/tests/traits/
H A Dinterface_002.phpt24 …bstract method and must therefore be declared abstract or implement the remaining methods (baz::ab…
/PHP-7.0/ext/standard/tests/misc/
H A Dtime_nanosleep_basic.phpt21 echo "Time remaining: $seconds seconds, $nanoseconds nanoseconds.";
/PHP-7.0/sapi/cgi/
H A Dcgi_main.c308 size_t remaining = str_length; in sapi_cgi_ub_write() local
311 while (remaining > 0) { in sapi_cgi_ub_write()
315 return str_length - remaining; in sapi_cgi_ub_write()
318 remaining -= ret; in sapi_cgi_ub_write()
327 size_t remaining = str_length; in sapi_fcgi_ub_write() local
330 while (remaining > 0) { in sapi_fcgi_ub_write()
331 int to_write = remaining > INT_MAX ? INT_MAX : (int)remaining; in sapi_fcgi_ub_write()
336 return str_length - remaining; in sapi_fcgi_ub_write()
339 remaining -= ret; in sapi_fcgi_ub_write()
509 if (remaining < count_bytes) { in sapi_fcgi_read_post()
[all …]
/PHP-7.0/sapi/fpm/fpm/
H A Dfpm_main.c312 uint remaining = str_length; in sapi_cgibin_ub_write() local
315 while (remaining > 0) { in sapi_cgibin_ub_write()
316 ret = sapi_cgibin_single_write(ptr, remaining); in sapi_cgibin_ub_write()
319 return str_length - remaining; in sapi_cgibin_ub_write()
322 remaining -= ret; in sapi_cgibin_ub_write()
477 size_t remaining = SG(request_info).content_length - SG(read_post_bytes); in sapi_cgi_read_post() local
479 if (remaining < count_bytes) { in sapi_cgi_read_post()
480 count_bytes = remaining; in sapi_cgi_read_post()
/PHP-7.0/sapi/cli/
H A Dphp_cli.c297 size_t remaining = str_length; in sapi_cli_ub_write() local
312 while (remaining > 0) in sapi_cli_ub_write()
314 ret = sapi_cli_single_write(ptr, remaining); in sapi_cli_ub_write()
322 remaining -= ret; in sapi_cli_ub_write()
/PHP-7.0/ext/pdo/
H A DTODO9 an array of parameters as the second argument, pushing the remaining

Completed in 91 milliseconds

12