Home
last modified time | relevance | path

Searched refs:fn (Results 1 – 25 of 46) sorted by relevance

12

/PHP-5.3/ext/ereg/regex/
H A Dsplit.c42 fn = nfields;
45 fn--;
59 fn++;
69 fn--;
73 fn++;
89 fn++;
102 fn--;
105 return(fn);
109 fn = 0;
113 fn++;
[all …]
/PHP-5.3/ext/zip/lib/
H A Dzip_name_locate.c55 const char *fn, *p; in _zip_name_locate() local
76 fn = za->cdir->entry[i].filename; in _zip_name_locate()
78 fn = _zip_get_name(za, i, flags, error); in _zip_name_locate()
81 if (fn == NULL) in _zip_name_locate()
85 p = strrchr(fn, '/'); in _zip_name_locate()
87 fn = p+1; in _zip_name_locate()
90 if (cmp(fname, fn) == 0) in _zip_name_locate()
H A Dzip_open.c61 zip_open(const char *fn, int flags, int *zep) in zip_open() argument
66 return _zip_allocate_new(fn, zep); in zip_open()
75 return _zip_allocate_new(fn, zep); in zip_open()
80 if ((fp=fopen(fn, "rb")) == NULL) { in zip_open()
85 return _zip_open(fn, fp, flags, 0, zep); in zip_open()
106 if ((za=_zip_allocate_new(fn, zep)) == NULL) in _zip_open()
455 _zip_allocate_new(const char *fn, int *zep) in _zip_allocate_new() argument
465 if (fn == NULL) in _zip_allocate_new()
468 za->zn = strdup(fn); in _zip_allocate_new()
485 if (fn == NULL) { in _zip_file_exists()
[all …]
/PHP-5.3/ext/session/tests/
H A Dsave_handler_closures.inc5 foreach (array ('open', 'close', 'read', 'write', 'destroy', 'gc') as $fn) {
6 ${$fn.'_closure'} = function () use ($fn) { return call_user_func_array ($fn, func_get_args ()); };
/PHP-5.3/ext/standard/tests/file/
H A Dbug53241.phpt10 $fn = __DIR__ . "/test.tmp";
11 @unlink($fn);
12 $fh = fopen($fn, 'xb');
18 $fn = __DIR__ . "/test.tmp";
19 @unlink($fn);
/PHP-5.3/sapi/litespeed/
H A Dlsapilib.h159 LSAPI_CB_EnvHandler fn, void * arg );
162 LSAPI_CB_EnvHandler fn, void * arg );
165 LSAPI_CB_EnvHandler fn, void * arg );
168 LSAPI_CB_EnvHandler fn, void * arg );
257 static inline int LSAPI_ForeachHeader( LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachHeader() argument
258 { return LSAPI_ForeachHeader_r( &g_req, fn, arg ); } in LSAPI_ForeachHeader()
261 LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachOrgHeader() argument
262 { return LSAPI_ForeachOrgHeader_r( &g_req, fn, arg ); } in LSAPI_ForeachOrgHeader()
264 static inline int LSAPI_ForeachEnv( LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachEnv() argument
265 { return LSAPI_ForeachEnv_r( &g_req, fn, arg ); } in LSAPI_ForeachEnv()
[all …]
H A Dlsapilib.c1168 LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachOrgHeader_r() argument
1175 if ( !pReq || !fn ) { in LSAPI_ForeachOrgHeader_r()
1203 ret = (*fn)( pKey, keyLen, in LSAPI_ForeachOrgHeader_r()
1217 LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachHeader_r() argument
1224 if ( !pReq || !fn ) { in LSAPI_ForeachHeader_r()
1290 if ( !pEnv || !fn ) { in EnvForeach()
1294 ret = (*fn)( pEnv->pKey, pEnv->keyLen, in EnvForeach()
1309 if ( !pReq || !fn ) { in LSAPI_ForeachEnv_r()
1314 fn, arg ); in LSAPI_ForeachEnv_r()
1324 if ( !pReq || !fn ) { in LSAPI_ForeachSpecialEnv_r()
[all …]
/PHP-5.3/ext/fileinfo/libmagic/
H A Dfsmagic.c93 file_fsmagic(struct magic_set *ms, const char *fn, struct stat *sb, php_stream *stream) in file_fsmagic() argument
101 if (!fn && !stream) { in file_fsmagic()
109 file_error(ms, errno, "cannot stat `%s'", fn); in file_fsmagic()
116 if (php_sys_stat(fn, sb) != 0) { in file_fsmagic()
118 file_error(ms, errno, "cannot stat `%s'", fn); in file_fsmagic()
204 file_error(ms, errno, "unreadable symlink `%s'", fn); in file_fsmagic()
H A Dapptype.c45 file_os2_apptype(struct magic_set *ms, const char *fn, const void *buf, in file_os2_apptype() argument
54 if (fn) in file_os2_apptype()
55 filename = strdup(fn); in file_os2_apptype()
67 if (fn == NULL) { in file_os2_apptype()
82 if (fn == NULL) { in file_os2_apptype()
H A Dapprentice.c269 if (fn) { in apprentice_1()
339 if ((fn = magic_getpath(fn, action)) == NULL) in file_apprentice()
345 if (fn == NULL) in file_apprentice()
347 if (fn == NULL) { in file_apprentice()
355 fn = mfn; in file_apprentice()
360 while (fn) { in file_apprentice()
364 if (*fn == '\0') in file_apprentice()
368 fn = p; in file_apprentice()
676 fn);
2390 fn = ++p;
[all …]
/PHP-5.3/ext/soap/
H A Dphp_packet_soap.c25 int parse_packet_soap(zval *this_ptr, char *buffer, int buffer_size, sdlFunctionPtr fn, char *fn_na… in parse_packet_soap() argument
258 if (fn != NULL && fn->binding && fn->binding->bindingType == BINDING_SOAP) { in parse_packet_soap()
264 sdlSoapBindingFunctionPtr fnb = (sdlSoapBindingFunctionPtr)fn->bindingAttributes; in parse_packet_soap()
269 if (fn->responseParameters) { in parse_packet_soap()
270 res_count = zend_hash_num_elements(fn->responseParameters); in parse_packet_soap()
271 zend_hash_internal_pointer_reset(fn->responseParameters); in parse_packet_soap()
272 while (zend_hash_get_current_data(fn->responseParameters, (void **)&h_param) == SUCCESS) { in parse_packet_soap()
286 name = fn->responseName; in parse_packet_soap()
339 zend_hash_move_forward(fn->responseParameters); in parse_packet_soap()
H A Dphp_packet_soap.h25 int parse_packet_soap(zval *this_ptr, char *buffer, int buffer_size, sdlFunctionPtr fn, char *fn_na…
/PHP-5.3/sapi/nsapi/
H A Dnsapi-readme.txt31 … Init fn="load-modules" funcs="php5_init,php5_execute,php5_auth_trans" shlib="/path/to/phplibrary"
32 Init fn=php5_init errorString="Failed to initialize PHP!" [php_ini="/path/to/php.ini"]
53 Service fn="php5_execute" type="magnus-internal/x-httpd-php" [inikey=value ...]
63 ObjectType fn="force-type" type="magnus-internal/x-httpd-php"
64 Service fn="php5_execute" [inikey=value ...]
84 AuthTrans fn=php5_auth_trans
95 AuthTrans fn=php5_auth_trans
106 Error fn="php5_execute" code=XXX script="/path/to/script.php" [inikey=value inikey=value...]
119 …Service fn="php5_execute" type="magnus-internal/directory" script="/path/to/script.php" [inikey=va…
146 Init fn=php5_init ... server_lib="ns-httpdXX.dll"
/PHP-5.3/ext/fileinfo/
H A Dlibmagic.patch128 + if (fn) {
194 if ((fn = magic_getpath(fn, action)) == NULL)
203 + if (fn == NULL)
213 fn = mfn;
223 while (fn) {
225 fn = p;
286 fn);
772 - asprintf(&buf, "%.*s.mime%s", (int)(q - fn), fn, ext);
786 - asprintf(&buf, "%.*s%s", (int)(q - fn), fn, ext);
787 + spprintf(&buf, MAXPATHLEN, "%.*s%s", (int)(q - fn), fn, ext);
[all …]
/PHP-5.3/ext/standard/
H A Dscanf.c593 long (*fn)() = NULL; in php_sscanf_internal() local
765 fn = (long (*)())strtol; in php_sscanf_internal()
770 fn = (long (*)())strtol; in php_sscanf_internal()
775 fn = (long (*)())strtol; in php_sscanf_internal()
781 fn = (long (*)())strtol; in php_sscanf_internal()
787 fn = (long (*)())strtoul; in php_sscanf_internal()
1063 value = (long) (*fn)(buf, NULL, base); in php_sscanf_internal()
/PHP-5.3/tests/classes/
H A Dvisibility_003a.phpt18 // overload fn with same visibility
H A Dvisibility_003c.phpt18 // overload fn with same visibility
H A Dvisibility_004a.phpt18 // overload fn with same visibility
H A Dvisibility_004c.phpt18 // overload fn with same visibility
H A Dvisibility_000c.phpt18 // overload fn with same visibility
H A Dvisibility_001c.phpt18 // overload fn with same visibility
H A Dvisibility_002c.phpt18 // overload fn with same visibility
H A Dvisibility_004b.phpt18 // overload fn with same visibility
H A Dvisibility_000a.phpt18 // overload fn with same visibility
H A Dvisibility_000b.phpt18 // overload fn with same visibility

Completed in 70 milliseconds

12