Home
last modified time | relevance | path

Searched refs:arg3 (Results 51 – 75 of 77) sorted by relevance

1234

/PHP-7.4/ext/standard/tests/strings/
H A Dvfprintf_basic2.phpt23 $arg3 = array(111,222,333);
36 vfprintf($fp, $format3, $arg3);
H A Dvfprintf_basic4.phpt19 $arg3 = array(TRUE,FALSE,TRUE);
32 vfprintf($fp, $format3,$arg3);
H A Dvfprintf_basic5.phpt19 $arg3 = array(65,66,67);
32 vfprintf($fp, $format3,$arg3);
H A Dvfprintf_basic6.phpt20 $arg3 = array(1000,2000,3000);
33 vfprintf($fp, $format3,$arg3);
H A Dvfprintf_basic7.phpt23 $arg3 = array(-1111,-1234567,-2345432);
36 vfprintf($fp, $format3,$arg3);
H A Dvfprintf_basic1.phpt19 $arg3 = array("one","two","three");
31 $result = vfprintf($fp, $format3, $arg3);
H A Dprintf_basic2.phpt20 $arg3 = 333;
38 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic4.phpt20 $arg3 = true;
38 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic5.phpt20 $arg3 = 67;
38 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic6.phpt19 $arg3 = +3e3;
37 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic7.phpt26 $arg3 = +2345432;
44 $result = printf($format3, $arg1, $arg2, $arg3);
H A Dprintf_basic8.phpt25 $arg3 = 0567;
43 $result = printf($format3, $arg1, $arg2, $arg3);
/PHP-7.4/ext/soap/tests/interop/Round3/GroupE/
H A Dr3_groupE_list_003w.phpt16 $struct = new SOAPList('arg1',1,new SOAPList('arg2',2,new SOAPList('arg3',3,NULL)));
26 …st"><varInt xsi:type="xsd:int">3</varInt><varString xsi:type="xsd:string">arg3</varString><child x…
28 …st"><varInt xsi:type="xsd:int">3</varInt><varString xsi:type="xsd:string">arg3</varString><child x…
45 string(4) "arg3"
H A Dr3_groupE_list_005w.phpt16 $struct = new SOAPList('arg1',1,new SOAPList('arg2',2,new SOAPList('arg3',3,NULL)));
27 …st"><varInt xsi:type="xsd:int">3</varInt><varString xsi:type="xsd:string">arg3</varString><child h…
29 …st"><varInt xsi:type="xsd:int">3</varInt><varString xsi:type="xsd:string">arg3</varString><child h…
46 string(4) "arg3"
H A Dr3_groupE_list_006w.phpt16 $struct = new SOAPList('arg1',1,new SOAPList('arg2',2,new SOAPList('arg3',3,NULL)));
27 …st"><varInt xsi:type="xsd:int">3</varInt><varString xsi:type="xsd:string">arg3</varString><child h…
29 …st"><varInt xsi:type="xsd:int">3</varInt><varString xsi:type="xsd:string">arg3</varString><child h…
46 string(4) "arg3"
/PHP-7.4/Zend/
H A Dzend_ini.h101 #define ZEND_INI_ENTRY3_EX(name, default_value, modifiable, on_modify, arg1, arg2, arg3, displayer)… argument
102 …{ name, on_modify, arg1, arg2, arg3, default_value, displayer, sizeof(default_value)-1, sizeof(nam…
104 #define ZEND_INI_ENTRY3(name, default_value, modifiable, on_modify, arg1, arg2, arg3) \ argument
105 ZEND_INI_ENTRY3_EX(name, default_value, modifiable, on_modify, arg1, arg2, arg3, NULL)
181 typedef void (*zend_ini_parser_cb_t)(zval *arg1, zval *arg2, zval *arg3, int callback_type, void *a…
/PHP-7.4/ext/sockets/
H A Dsockets.c1394 zval *arg1, *arg2, *arg3 = NULL; local
1430 if (arg3 != NULL) {
1431 ZEND_TRY_ASSIGN_REF_LONG(arg3, htons(sin6->sin6_port));
1446 if (arg3 != NULL) {
1447 ZEND_TRY_ASSIGN_REF_LONG(arg3, htons(sin->sin_port));
1471 zend_long arg1, arg2, arg3; local
1474 if (zend_parse_parameters(ZEND_NUM_ARGS(), "lll", &arg1, &arg2, &arg3) == FAILURE) {
1493 php_sock->bsd_socket = socket(arg1, arg2, arg3);
1791 zend_long arg3, arg4; local
1804 if ((arg3 + 2) < 3) {
[all …]
/PHP-7.4/main/
H A Dphp_ini.c189 static void php_ini_parser_cb(zval *arg1, zval *arg2, zval *arg3, int callback_type, HashTable *tar… in php_ini_parser_cb() argument
244 if (arg3 && Z_STRLEN_P(arg3) > 0) { in php_ini_parser_cb()
245 entry = zend_symtable_update(Z_ARRVAL_P(find_arr), Z_STR_P(arg3), arg2); in php_ini_parser_cb()
/PHP-7.4/ext/intl/calendar/
H A Dcalendar_methods.cpp405 zend_long arg1, arg2, arg3, arg4, arg5, arg6; in PHP_FUNCTION() local
431 "Oll|llll", &object, Calendar_ce_ptr, &arg1, &arg2, &arg3, &arg4, in PHP_FUNCTION()
458 co->ucal->set((int32_t)arg1, (int32_t)arg2, (int32_t)arg3); in PHP_FUNCTION()
460 co->ucal->set((int32_t)arg1, (int32_t)arg2, (int32_t)arg3, (int32_t)arg4, (int32_t)arg5); in PHP_FUNCTION()
462 …co->ucal->set((int32_t)arg1, (int32_t)arg2, (int32_t)arg3, (int32_t)arg4, (int32_t)arg5, (int32_t)… in PHP_FUNCTION()
/PHP-7.4/ext/sqlite3/
H A Dsqlite3.c39 static int php_sqlite3_authorizer(void *autharg, int access_type, const char *arg3, const char *arg…
2280 static int php_sqlite3_authorizer(void *autharg, int access_type, const char *arg3, const char *arg… in php_sqlite3_authorizer() argument
2285 if (memcmp(arg3, ":memory:", sizeof(":memory:")) && *arg3) { in php_sqlite3_authorizer()
2286 if (strncmp(arg3, "file:", 5) == 0) { in php_sqlite3_authorizer()
2288 if (!arg3[5]) { in php_sqlite3_authorizer()
2291 if (php_check_open_basedir(arg3 + 5)) { in php_sqlite3_authorizer()
2295 if (php_check_open_basedir(arg3)) { in php_sqlite3_authorizer()
/PHP-7.4/ext/pdo_sqlite/
H A Dsqlite_driver.c767 static int authorizer(void *autharg, int access_type, const char *arg3, const char *arg4, in authorizer() argument
782 filename = make_filename_safe(arg3); in authorizer()
/PHP-7.4/ext/standard/
H A Dbasic_functions.c5984 static void php_simple_ini_parser_cb(zval *arg1, zval *arg2, zval *arg3, int callback_type, zval *a… argument
6024 if (!arg3 || (Z_TYPE_P(arg3) == IS_STRING && Z_STRLEN_P(arg3) == 0)) {
6028 array_set_zval_key(Z_ARRVAL_P(find_hash), arg3, arg2);
6041 static void php_ini_parser_cb_with_sections(zval *arg1, zval *arg2, zval *arg3, int callback_type, … argument
6055 php_simple_ini_parser_cb(arg1, arg2, arg3, callback_type, active_arr);
H A Dbrowscap.c302 static void php_browscap_parser_cb(zval *arg1, zval *arg2, zval *arg3, int callback_type, void *arg… in php_browscap_parser_cb() argument
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_main.c112 static void fastcgi_ini_parser(zval *arg1, zval *arg2, zval *arg3, int callback_type, void *arg);
1356 static void fastcgi_ini_parser(zval *arg1, zval *arg2, zval *arg3, int callback_type, void *arg) /*… in fastcgi_ini_parser() argument
H A Dfpm_conf.c1492 static void fpm_conf_ini_parser(zval *arg1, zval *arg2, zval *arg3, int callback_type, void *arg) /… in fpm_conf_ini_parser() argument
1508 fpm_conf_ini_parser_array(arg1, arg3, arg2, error); in fpm_conf_ini_parser()

Completed in 90 milliseconds

1234