| /PHP_5_5/ext/zip/ |
| H A D | zip_stream.c | 119 if (strncasecmp("zip://", path, 6) == 0) { 264 if (strncasecmp("zip://", path, 6) == 0) {
|
| /PHP_5_5/Zend/ |
| H A D | zend_config.w32.h | 55 #define strncasecmp(s1, s2, n) strnicmp(s1, s2, n) macro
|
| H A D | zend_vm_gen.php | 398 if (strncasecmp($matches[0], "EXECUTE_DATA", strlen("EXECUTE_DATA")) == 0) { 400 } else if (strncasecmp($matches[0], "ZEND_VM_DISPATCH_TO_HANDLER", strlen("ZEND_VM_DISPATCH_TO_HANDLER")) == 0) { 402 } else if (strncasecmp($matches[0], "ZEND_VM_DISPATCH_TO_HELPER_EX", strlen("ZEND_VM_DISPATCH_TO_HELPER_EX")) == 0) { 419 if (strncasecmp($matches[0], "EXECUTE_DATA", strlen("EXECUTE_DATA")) == 0) { 421 } else if (strncasecmp($matches[0], "ZEND_VM_DISPATCH_TO_HANDLER", strlen("ZEND_VM_DISPATCH_TO_HANDLER")) == 0) { 423 } else if (strncasecmp($matches[0], "ZEND_VM_DISPATCH_TO_HELPER_EX", strlen("ZEND_VM_DISPATCH_TO_HELPER_EX")) == 0) { 440 if (strncasecmp($matches[0], "EXECUTE_DATA", strlen("EXECUTE_DATA")) == 0) { 442 } else if (strncasecmp($matches[0], "ZEND_VM_DISPATCH_TO_HANDLER", strlen("ZEND_VM_DISPATCH_TO_HANDLER")) == 0) { 444 } else if (strncasecmp($matches[0], "ZEND_VM_DISPATCH_TO_HELPER_EX", strlen("ZEND_VM_DISPATCH_TO_HELPER_EX")) == 0) {
|
| /PHP_5_5/ext/mcrypt/ |
| H A D | mcrypt_filter.c | 164 if (strncasecmp(filtername, "mdecrypt.", sizeof("mdecrypt.") - 1) == 0) { 167 } else if (strncasecmp(filtername, "mcrypt.", sizeof("mcrypt.") - 1) != 0) {
|
| /PHP_5_5/ext/standard/ |
| H A D | php_fopen_wrapper.c | 169 if (!strncasecmp(path, "php://", 6)) { 173 if (!strncasecmp(path, "temp", 4)) { 176 if (!strncasecmp(path, "/maxmemory:", 11)) { 260 } else if (!strncasecmp(path, "fd/", 3)) { 307 } else if (!strncasecmp(path, "filter/", 7)) { 331 if (!strncasecmp(p, "read=", 5)) { 333 } else if (!strncasecmp(p, "write=", 6)) {
|
| H A D | url.c | 157 if (!strncasecmp("file", ret->scheme, sizeof("file"))) { 169 if (!strncasecmp("file", ret->scheme, sizeof("file"))) {
|
| H A D | url_scanner_ex.c | 220 if (strncasecmp(ctx->arg.c, ctx->lookup_data, ctx->arg.len) == 0) 277 if (!strncasecmp(ctx->tag.c, "form", sizeof("form") - 1)) { 287 if ((e - p) && strncasecmp(p, ctx->lookup_data, (e - p))) { 295 if (!strncasecmp(ctx->tag.c, "fieldset", sizeof("fieldset") - 1)) {
|
| H A D | url_scanner_ex.re | 156 if (strncasecmp(ctx->arg.c, ctx->lookup_data, ctx->arg.len) == 0) 213 if (!strncasecmp(ctx->tag.c, "form", sizeof("form") - 1)) { 223 if ((e - p) && strncasecmp(p, ctx->lookup_data, (e - p))) { 231 if (!strncasecmp(ctx->tag.c, "fieldset", sizeof("fieldset") - 1)) {
|
| H A D | http_fopen_wrapper.c | 130 if (strncasecmp(resource->scheme, "http", sizeof("http")) && strncasecmp(resource->scheme, "https", sizeof("https"))) { 733 if (!strncasecmp(http_header_line, "Location: ", 10)) { 745 } else if (!strncasecmp(http_header_line, "Content-Type: ", 14)) { 747 } else if (!strncasecmp(http_header_line, "Content-Length: ", 16)) { 750 } else if (!strncasecmp(http_header_line, "Transfer-Encoding: chunked", sizeof("Transfer-Encoding: chunked"))) { 804 if (strlen(location)<8 || (strncasecmp(location, "http://", sizeof("http://")-1) && 805 strncasecmp(location, "https://", sizeof("https://")-1) && 806 strncasecmp(location, "ftp://", sizeof("ftp://")-1) && 807 strncasecmp(locatio [all...] |
| H A D | browscap.c | 172 if ((Z_STRLEN_P(arg2) == 2 && !strncasecmp(Z_STRVAL_P(arg2), "on", sizeof("on") - 1)) || 173 (Z_STRLEN_P(arg2) == 3 && !strncasecmp(Z_STRVAL_P(arg2), "yes", sizeof("yes") - 1)) || 174 (Z_STRLEN_P(arg2) == 4 && !strncasecmp(Z_STRVAL_P(arg2), "true", sizeof("true") - 1)) 179 (Z_STRLEN_P(arg2) == 2 && !strncasecmp(Z_STRVAL_P(arg2), "no", sizeof("no") - 1)) || 180 (Z_STRLEN_P(arg2) == 3 && !strncasecmp(Z_STRVAL_P(arg2), "off", sizeof("off") - 1)) || 181 (Z_STRLEN_P(arg2) == 4 && !strncasecmp(Z_STRVAL_P(arg2), "none", sizeof("none") - 1)) || 182 (Z_STRLEN_P(arg2) == 5 && !strncasecmp(Z_STRVAL_P(arg2), "false", sizeof("false") - 1))
|
| H A D | filestat.c | 436 if(wrapper != &php_plain_files_wrapper || strncasecmp("file://", filename, 7) == 0) { 573 if(wrapper != &php_plain_files_wrapper || strncasecmp("file://", filename, 7) == 0) { 681 if(wrapper != &php_plain_files_wrapper || strncasecmp("file://", filename, 7) == 0) { 753 if(wrapper != &php_plain_files_wrapper || strncasecmp("file://", filename, 7) == 0) {
|
| /PHP_5_5/ext/zlib/ |
| H A D | zlib_fopen_wrapper.c | 123 if (strncasecmp("compress.zlib://", path, 16) == 0) { 125 } else if (strncasecmp("zlib:", path, 5) == 0) {
|
| /PHP_5_5/main/ |
| H A D | SAPI.c | 308 if (*charset && strncasecmp(mimetype, "text/", 5) == 0) { 603 && !strncasecmp(header->header, name, len)) { 764 && !strncasecmp(header_line, "HTTP/", 5)) {
|
| H A D | fopen_wrappers.c | 255 if (strncasecmp(resolved_basedir, resolved_name, resolved_basedir_len) == 0) { 270 if (strncasecmp(resolved_basedir, resolved_name, resolved_name_len) == 0) {
|
| H A D | php_ini.c | 286 if (!strncasecmp(Z_STRVAL_P(arg1), "PATH", sizeof("PATH") - 1)) { 297 } else if (!strncasecmp(Z_STRVAL_P(arg1), "HOST", sizeof("HOST") - 1)) {
|
| /PHP_5_5/sapi/apache2filter/ |
| H A D | apache_config.c | 64 if (!strncasecmp(value, "none", sizeof("none"))) {
|
| /PHP_5_5/sapi/apache2handler/ |
| H A D | apache_config.c | 64 if (!strncasecmp(value, "none", sizeof("none"))) {
|
| /PHP_5_5/sapi/tux/ |
| H A D | php_tux.c | 134 && strncasecmp(h->header, "Content-length:", sizeof("Content-length:")-1) == 0) {
|
| /PHP_5_5/ext/filter/ |
| H A D | logical_filters.c | 262 if (strncasecmp(str, "on", 2) == 0) { 264 } else if (strncasecmp(str, "no", 2) == 0) { 271 if (strncasecmp(str, "yes", 3) == 0) { 273 } else if (strncasecmp(str, "off", 3) == 0) { 280 if (strncasecmp(str, "true", 4) == 0) { 287 if (strncasecmp(str, "false", 5) == 0) { 742 if (Z_STRLEN_P(value) >=2 && (!strncasecmp("FC", Z_STRVAL_P(value), 2) || !strncasecmp("FD", Z_STRVAL_P(value), 2))) { 763 !strncasecmp("fe8", Z_STRVAL_P(value), 3) || 764 !strncasecmp("fe [all...] |
| /PHP_5_5/ext/date/lib/ |
| H A D | timelib.h | 53 #if defined(_MSC_VER) && !defined(strncasecmp) 54 #define strncasecmp strnicmp macro
|
| /PHP_5_5/sapi/fpm/fpm/ |
| H A D | fpm_main.c | 425 strncasecmp(SG(sapi_headers).http_status_line, "HTTP/", 5) == 0 433 strncasecmp(h->header, "Status:", sizeof("Status:") - 1) == 0 469 strncasecmp(h->header, "Status:", sizeof("Status:") - 1) == 0 477 strncasecmp(h->header, "Content-Type:", sizeof("Content-Type:") - 1) == 0 1108 strncasecmp(env_script_filename, APACHE_PROXY_FCGI_PREFIX, sizeof(APACHE_PROXY_FCGI_PREFIX) - 1) == 0) {
|
| /PHP_5_5/ext/pdo_firebird/ |
| H A D | firebird_statement.c | 481 if ((var->aliasname_length && !strncasecmp(param->name, var->aliasname, 483 || (var->sqlname_length && !strncasecmp(param->name, var->sqlname,
|
| /PHP_5_5/ext/phar/ |
| H A D | func_interceptors.c | 53 if (strncasecmp(fname, "phar://", 7)) { 127 if (strncasecmp(fname, "phar://", 7)) { 258 if (strncasecmp(fname, "phar://", 7)) { 354 if (strncasecmp(fname, "phar://", 7)) { 629 if (strncasecmp(fname, "phar://", 7)) { 919 if (strncasecmp(fname, "phar://", 7)) { 986 if (strncasecmp(fname, "phar://", 7)) {
|
| /PHP_5_5/ext/soap/ |
| H A D | php_http.c | 131 strncasecmp(s, "host", sizeof("host")-1) != 0) && 133 strncasecmp(s, "connection", sizeof("connection")-1) != 0) && 135 strncasecmp(s, "user-agent", sizeof("user-agent")-1) != 0) && 137 strncasecmp(s, "content-length", sizeof("content-length")-1) != 0) && 139 strncasecmp(s, "content-type", sizeof("content-type")-1) != 0) && 142 strncasecmp(s, "cookie", sizeof("cookie")-1) != 0) && 145 strncasecmp(s, "authorization", sizeof("authorization")-1) != 0) && 148 strncasecmp(s, "proxy-authorization", sizeof("proxy-authorization")-1) != 0)) { 1020 if (strncasecmp(connection, "close", sizeof("close")-1) == 0) { 1029 if (strncasecmp(connectio [all...] |
| /PHP_5_5/sapi/thttpd/ |
| H A D | thttpd.c | 204 if (!TG(seen_cl) && strncasecmp(h->header, CL_TOKEN, sizeof(CL_TOKEN)-1) == 0) { 206 } else if (!TG(seen_cn) && strncasecmp(h->header, CN_TOKEN, sizeof(CN_TOKEN)-1) == 0) {
|