Home
last modified time | relevance | path

Searched refs:arg (Results 1 – 25 of 572) sorted by last modified time

12345678910>>...23

/PHP-5.5/win32/build/
H A Dconfutils.js320 arg = args(i);
332 arg = arg.split("=", 2);
333 argname = arg[0];
335 argval = arg[1];
347 arg.seen = true;
399 if (arg.arg.length > max_width)
400 max_width = arg.arg.length;
406 n = max_width - arg.arg.length;
411 STDOUT.WriteLine(" " + arg.arg + pad + word_wrap_and_indent(max_width + 5, arg.helptext));
429 if (arg.seen)
[all …]
H A Dphpize.js.in182 arg = args(i);
184 arg = arg.split("=", 2);
185 argname = arg[0];
186 if (arg.length > 1) {
187 argval = arg[1];
H A Dbuildconf.js186 arg = args(i);
188 arg = arg.split("=", 2);
189 argname = arg[0];
190 if (arg.length > 1) {
191 argval = arg[1];
/PHP-5.5/tests/output/
H A Dob_start_error_001.phpt2 Test wrong number of arguments and wrong arg types for ob_start()
H A Dob_start_error_002.phpt2 Test wrong number of arguments and wrong arg types for ob_start()
/PHP-5.5/tests/lang/
H A Dfunc_get_arg.004.phpt2 func_get_arg on non-existent arg
H A Dbug21849.phpt8 function foo($arg = self::bar) {
9 echo $arg;
/PHP-5.5/tests/classes/
H A Dinterface_optional_arg_002.phpt14 public function bar($arg = 2) {
15 var_dump($arg);
H A Dmethod_override_optional_arg_002.phpt2 Omitting optional arg in method inherited from abstract class
7 function foo($arg = 1) {}
21 Strict Standards: Declaration of B::foo() should be compatible with A::foo($arg = 1) in %s on line …
/PHP-5.5/
H A Dserver-tests.php624 foreach ($this->xargs as $arg=>$arg_info) {
625 $usage .= sprintf(" -%s %-12s %s\n",$arg,$arg_info[1],$arg_info[3]);
703 foreach ($this->xargs as $arg=>$arg_info) {
/PHP-5.5/scripts/dev/generate-phpt/src/setup/
H A DgtCommandLineOptions.php28 protected function isShortOption($arg) argument
30 return (substr($arg, 0, 1) == '-') && (substr($arg, 1, 1) != '-');
/PHP-5.5/scripts/dev/
H A Dgenerate-phpt.phar441 protected function isShortOption($arg)
443 return (substr($arg, 0, 1) == '-') && (substr($arg, 1, 1) != '-');
/PHP-5.5/sapi/thttpd/
H A Dthttpd.c709 void thttpd_register_on_close(void (*arg)(int))
712 TG(on_close) = arg;
H A Dthttpd_patch153 … send_response( httpd_conn* hc, int status, char* title, char* extraheads, char* form, char* arg );
/PHP-5.5/sapi/tux/
H A Dphp_tux.c407 void tux_register_on_close(void (*arg)(int)) in tux_register_on_close()
409 TG(on_close) = arg; in tux_register_on_close()
/PHP-5.5/sapi/isapi/stresstest/
H A Dstresstest.cpp88 const char *arg,
633 const char *arg, in stress_main() argument
673 context.env["QUERY_STRING"]= arg; in stress_main()
691 ECB.lpszQueryString = strdup(arg); in stress_main()
/PHP-5.5/sapi/litespeed/
H A Dlsapi_main.c201 void * arg ) in add_variable() argument
204 int filter_arg = (Z_ARR_P((zval *)arg) == Z_ARR(PG(http_globals)[TRACK_VARS_ENV])) in add_variable()
207 int filter_arg = (arg == PG(http_globals)[TRACK_VARS_ENV])?PARSE_ENV:PARSE_SERVER; in add_variable()
213 php_register_variable_safe((char *)pKey, new_val, new_val_len, (zval *)arg ); in add_variable()
308 void * arg ) in add_variable_magic_quote() argument
311 HashTable * symtable1 = Z_ARRVAL_P((zval * )arg); in add_variable_magic_quote()
616 void * arg ) in alter_ini() argument
1197 void * arg ) in add_associate_array() argument
1199 add_assoc_string_ex( (zval *)arg, (char *)pKey, keyLen+1, (char *)pValue in add_associate_array()
H A Dlsapilib.c1926 LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachOrgHeader_r() argument
1993 headers[i]._value, headers[i]._valueLen, arg ); in LSAPI_ForeachOrgHeader_r()
2003 LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachHeader_r() argument
2020 pValue, len, arg ); in LSAPI_ForeachHeader_r()
2060 pValue, pCur->valueLen, arg ); in LSAPI_ForeachHeader_r()
2071 int n, LSAPI_CB_EnvHandler fn, void * arg ) in EnvForeach() argument
2080 pEnv->pValue, pEnv->valLen, arg ); in EnvForeach()
2091 LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachEnv_r() argument
2098 fn, arg ); in LSAPI_ForeachEnv_r()
2106 LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachSpecialEnv_r() argument
[all …]
H A Dlsapilib.h137 const char * pValue, int valLen, void * arg );
159 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 );
282 { return LSAPI_ForeachHeader_r( &g_req, fn, arg ); } in LSAPI_ForeachHeader()
285 LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachOrgHeader() argument
286 { return LSAPI_ForeachOrgHeader_r( &g_req, fn, arg ); } in LSAPI_ForeachOrgHeader()
288 static inline int LSAPI_ForeachEnv( LSAPI_CB_EnvHandler fn, void * arg ) in LSAPI_ForeachEnv() argument
289 { return LSAPI_ForeachEnv_r( &g_req, fn, arg ); } in LSAPI_ForeachEnv()
[all …]
/PHP-5.5/sapi/milter/
H A Dmilter.php62 foreach ($args as $ix => $arg) {
63 milter_log("\targs[$ix] = $arg");
74 foreach ($args as $ix => $arg) {
75 milter_log("\targs[$ix] = $arg");
H A Dphp_milter.c975 static void define_command_line_ini_entry(char *arg) /* {{{ */ in define_command_line_ini_entry() argument
979 name = arg; in define_command_line_ini_entry()
980 value = strchr(arg, '='); in define_command_line_ini_entry()
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_php.c196 static void fpm_php_cleanup(int which, void *arg) /* {{{ */ in fpm_php_cleanup() argument
H A Dfpm_process_ctl.c40 static void fpm_pctl_cleanup(int which, void *arg) /* {{{ */ in fpm_pctl_cleanup() argument
54 static void fpm_pctl_action(struct fpm_event_s *ev, short which, void *arg) /* {{{ */ in fpm_pctl_action() argument
441 void fpm_pctl_heartbeat(struct fpm_event_s *ev, short which, void *arg) /* {{{ */ in fpm_pctl_heartbeat() argument
466 …perform_idle_server_maintenance_heartbeat(struct fpm_event_s *ev, short which, void *arg) /* {{{ */ in fpm_pctl_perform_idle_server_maintenance_heartbeat() argument
496 void fpm_pctl_on_socket_accept(struct fpm_event_s *ev, short which, void *arg) /* {{{ */ in fpm_pctl_on_socket_accept() argument
498 struct fpm_worker_pool_s *wp = (struct fpm_worker_pool_s *)arg; in fpm_pctl_on_socket_accept()
H A Dfpm_process_ctl.h24 void fpm_pctl_heartbeat(struct fpm_event_s *ev, short which, void *arg);
25 …fpm_pctl_perform_idle_server_maintenance_heartbeat(struct fpm_event_s *ev, short which, void *arg);
26 void fpm_pctl_on_socket_accept(struct fpm_event_s *ev, short which, void *arg);
H A Dfpm_sockets.c44 static void fpm_sockets_cleanup(int which, void *arg) /* {{{ */ in fpm_sockets_cleanup() argument

Completed in 61 milliseconds

12345678910>>...23