Home
last modified time | relevance | path

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

12

/PHP-7.1/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.1/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.1/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.1/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.1/Zend/tests/
H A Derrmsg_018.phpt13 …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.1/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.1/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.phpt19 …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.phpt21 …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.phpt28 …bstract method and must therefore be declared abstract or implement the remaining methods (Throwab…
/PHP-7.1/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.1/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.1/ext/standard/tests/misc/
H A Dtime_nanosleep_basic.phpt21 echo "Time remaining: $seconds seconds, $nanoseconds nanoseconds.";
/PHP-7.1/sapi/cgi/
H A Dcgi_main.c319 size_t remaining = str_length; in sapi_cgi_ub_write() local
322 while (remaining > 0) { in sapi_cgi_ub_write()
326 return str_length - remaining; in sapi_cgi_ub_write()
329 remaining -= ret; in sapi_cgi_ub_write()
338 size_t remaining = str_length; in sapi_fcgi_ub_write() local
341 while (remaining > 0) { in sapi_fcgi_ub_write()
342 int to_write = remaining > INT_MAX ? INT_MAX : (int)remaining; in sapi_fcgi_ub_write()
347 return str_length - remaining; in sapi_fcgi_ub_write()
350 remaining -= ret; in sapi_fcgi_ub_write()
518 if (remaining < count_bytes) { in sapi_fcgi_read_post()
[all …]
/PHP-7.1/sapi/fpm/fpm/
H A Dfpm_main.c313 uint remaining = str_length; in sapi_cgibin_ub_write() local
316 while (remaining > 0) { in sapi_cgibin_ub_write()
317 ret = sapi_cgibin_single_write(ptr, remaining); in sapi_cgibin_ub_write()
320 return str_length - remaining; in sapi_cgibin_ub_write()
323 remaining -= ret; in sapi_cgibin_ub_write()
478 size_t remaining = SG(request_info).content_length - SG(read_post_bytes); in sapi_cgi_read_post() local
480 if (remaining < count_bytes) { in sapi_cgi_read_post()
481 count_bytes = remaining; in sapi_cgi_read_post()
/PHP-7.1/ext/pdo/
H A DTODO9 an array of parameters as the second argument, pushing the remaining
/PHP-7.1/sapi/cli/
H A Dphp_cli.c298 size_t remaining = str_length; in sapi_cli_ub_write() local
313 while (remaining > 0) in sapi_cli_ub_write()
315 ret = sapi_cli_single_write(ptr, remaining); in sapi_cli_ub_write()
323 remaining -= ret; in sapi_cli_ub_write()

Completed in 79 milliseconds

12