Home
last modified time | relevance | path

Searched refs:retries (Results 26 – 34 of 34) sorted by relevance

12

/PHP-8.0/ext/snmp/tests/
H A Dskipif.inc9 //string $object_id [, int $timeout [, int $retries ]] )
H A Dbug60749.phpt20 $session = new SNMP(SNMP::VERSION_1, "$hostname:$port", $community, $timeout, $retries);
H A Dsnmp_include.inc18 $retries = getenv('SNMP_RETRIES') ?: 1;
H A Dsnmp-object-setSecurity_error.phpt17 $session = new SNMP(SNMP::VERSION_3, $hostname, $user_noauth, $timeout, $retries);
/PHP-8.0/ext/imap/tests/
H A Dimap_open_error.phpt35 imap_open(): Argument #5 ($retries) must be greater than or equal to 0
/PHP-8.0/ext/snmp/
H A Dsnmp.c909 session->retries = retries; in netsnmp_session_init()
1118 zend_long retries = SNMP_DEFAULT_RETRIES; in php_snmp() local
1146 Z_PARAM_LONG(retries) in php_snmp()
1164 Z_PARAM_LONG(retries) in php_snmp()
1177 Z_PARAM_LONG(retries) in php_snmp()
1190 Z_PARAM_LONG(retries) in php_snmp()
1235 if (netsnmp_session_init(&session, version, a1, a2, timeout, retries)) { in php_snmp()
1516 zend_long retries = SNMP_DEFAULT_RETRIES; in PHP_METHOD() local
1522 …if (zend_parse_parameters(argc, "lss|ll", &version, &a1, &a1_len, &a2, &a2_len, &timeout, &retries in PHP_METHOD()
1541 if (netsnmp_session_init(&(snmp_object->session), version, a1, a2, timeout, retries)) { in PHP_METHOD()
[all …]
/PHP-8.0/ext/imap/
H A Dphp_imap.stub.php8 function imap_open(string $mailbox, string $user, string $password, int $flags = 0, int $retries = … argument
13 function imap_reopen($imap, string $mailbox, int $flags = 0, int $retries = 0): bool {} argument
H A Dphp_imap_arginfo.h9 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, retries, IS_LONG, 0, "0")
17 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, retries, IS_LONG, 0, "0")
H A Dphp_imap.c733 zend_long retries = 0, flags = 0, cl_flags = 0; in PHP_FUNCTION() local
738 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "PSS|llh", &mailbox, &user, &passwd, &flags, &retries, … in PHP_FUNCTION()
752 if (retries < 0) { in PHP_FUNCTION()
826 if (retries) { in PHP_FUNCTION()
827 mail_parameters(NIL, SET_MAXLOGINTRIALS, (void *) retries); in PHP_FUNCTION()
855 zend_long options = 0, retries = 0; in PHP_FUNCTION() local
860 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rS|ll", &streamind, &mailbox, &options, &retries) == F… in PHP_FUNCTION()
879 if (retries < 0) { in PHP_FUNCTION()
893 if (retries) { in PHP_FUNCTION()
894 mail_parameters(NIL, SET_MAXLOGINTRIALS, (void *) retries); in PHP_FUNCTION()

Completed in 26 milliseconds

12