Home
last modified time | relevance | path

Searched refs:rest (Results 1 – 25 of 43) sorted by last modified time

12

/PHP-5.5/tests/classes/
H A D__set__get_001.phpt42 // the rest are fine...
/PHP-5.5/sapi/thttpd/
H A Dthttpd_patch416 httpd_realloc_str( &rest, &maxrest, restlen );
417 (void) strcpy( rest, path );
418 - if ( rest[restlen - 1] == '/' )
419 + if ( restlen > 0 && rest[restlen - 1] == '/' )
420 rest[--restlen] = '\0'; /* trim trailing slash */
/PHP-5.5/sapi/fpm/fpm/
H A Dfastcgi.c672 int ret, n, rest; in fcgi_read() local
677 rest = len; in fcgi_read()
678 while (rest > 0) { in fcgi_read()
693 if (req->in_len >= rest) { in fcgi_read()
694 ret = safe_read(req, str, rest); in fcgi_read()
703 rest -= ret; in fcgi_read()
988 int limit, rest; local
1047 rest = pad ? 8 - pad : 0;
1055 if (safe_write(req, str + pos, (len - pos) - rest) != (len - pos) - rest) {
1061 memcpy(req->out_pos, str + len - rest, rest);
[all …]
/PHP-5.5/sapi/cli/tests/
H A Dbug61679.phpt35 // the rest is not interesting
/PHP-5.5/sapi/cgi/
H A Dfastcgi.c1046 int ret, n, rest; in fcgi_read() local
1051 rest = len; in fcgi_read()
1052 while (rest > 0) { in fcgi_read()
1077 rest -= ret; in fcgi_read()
1344 int limit, rest; local
1355 rest = len;
1356 while (rest > 0) {
1368 if (rest < limit) {
1375 rest -= limit;
1440 if (safe_write(req, str + pos, (len - pos) - rest) != (len - pos) - rest) {
[all …]
/PHP-5.5/ext/zlib/tests/
H A Ddata.inc46 in the rest, we will resemble you in that. If a Jew wrong a
64 Or else worth all the rest; I see thee still,
/PHP-5.5/ext/standard/
H A Durl_scanner_ex.c344 int rest; in xx_mainloop() local
899 rest = YYLIMIT - start; in xx_mainloop()
900 …ed in state %d at pos %d (%d:%c) %d\n", STATE, YYCURSOR - ctx->buf.c, *YYCURSOR, *YYCURSOR, rest)); in xx_mainloop()
902 if (rest < 0) rest = 0; in xx_mainloop()
904 if (rest) memmove(ctx->buf.c, start, rest); in xx_mainloop()
905 ctx->buf.len = rest; in xx_mainloop()
H A Durl_scanner_ex.re280 int rest;
351 rest = YYLIMIT - start;
352 …ed in state %d at pos %d (%d:%c) %d\n", STATE, YYCURSOR - ctx->buf.c, *YYCURSOR, *YYCURSOR, rest));
354 if (rest < 0) rest = 0;
356 if (rest) memmove(ctx->buf.c, start, rest);
357 ctx->buf.len = rest;
/PHP-5.5/ext/standard/tests/url/
H A Dparse_url_basic_001.phpt852 --> /rest/Users?filter={"id":"123"}: array(2) {
854 string(11) "/rest/Users"
H A Dparse_url_basic_002.phpt113 --> /rest/Users?filter={"id":"123"} : NULL
H A Dparse_url_basic_007.phpt112 --> /rest/Users?filter={"id":"123"} : string(11) "/rest/Users"
H A Dparse_url_basic_008.phpt112 --> /rest/Users?filter={"id":"123"} : string(19) "filter={"id":"123"}"
H A Dparse_url_basic_009.phpt112 --> /rest/Users?filter={"id":"123"} : NULL
H A Durls.inc92 '/rest/Users?filter={"id":"123"}',
H A Dparse_url_basic_003.phpt112 --> /rest/Users?filter={"id":"123"} : NULL
H A Dparse_url_basic_004.phpt112 --> /rest/Users?filter={"id":"123"} : NULL
H A Dparse_url_basic_005.phpt112 --> /rest/Users?filter={"id":"123"} : NULL
H A Dparse_url_basic_006.phpt112 --> /rest/Users?filter={"id":"123"} : NULL
/PHP-5.5/ext/standard/tests/strings/
H A Dstrstr.phpt7 and reurns the rest of the string from that string
H A Dstr_replace_variation3.phpt17 string is used for the rest of replacement values */
H A Dstr_replace.phpt104 string is used for the rest of replacement values */
H A Dexplode1.phpt12 elements with the last element containing the rest of string.
/PHP-5.5/ext/standard/tests/file/
H A Dfgetcsv_variation6.phpt83 // read rest of the line
H A Dfile.inc453 $name_prefix = prefix for the filename, rest of the name is incremental(increment by 1 only)
497 $link_name_prefix = prefix for the linkname, rest of the name is incremental(increment by 1 only)
H A Dfgetcsv_variation17.phpt78 // read rest of the line

Completed in 116 milliseconds

12