Home
last modified time | relevance | path

Searched refs:errcode (Results 1 – 22 of 22) sorted by relevance

/php-src/ext/ldap/tests/
H A Dldap_bind_ext.phpt22 ldap_parse_result($link, $result, $errcode, $matcheddn, $errmsg, $referrals, $ctrls),
23 $errcode,
27 ldap_parse_result($link, $result, $errcode, $matcheddn, $errmsg, $referrals, $ctrls),
28 $errcode,
36 ldap_parse_result($link, $result, $errcode, $matcheddn, $errmsg, $referrals, $ctrls),
37 $errcode,
41 ldap_parse_result($link, $result, $errcode, $matcheddn, $errmsg, $referrals, $ctrls),
42 $errcode,
H A Dldap_search_sort_controls.phpt35 ldap_parse_result($link, $result, $errcode , $matcheddn , $errmsg , $referrals, $controls),
36 $errcode,
65 ldap_parse_result($link, $result, $errcode , $matcheddn , $errmsg , $referrals, $controls),
70 $controls[LDAP_CONTROL_VLVRESPONSE]['value']['errcode'],
146 ["errcode"]=>
201 ["errcode"]=>
H A Dldap_parse_result_basic.phpt22 $errcode = $dn = $errmsg = $refs = null;
24 ldap_parse_result($link, $result, $errcode, $dn, $errmsg, $refs),
25 $errcode, $dn, $errmsg, $refs
H A Dldap_mod_ext.phpt33 ldap_parse_result($link, $result, $errcode, $matcheddn, $errmsg, $referrals, $ctrls),
34 $errcode,
47 ldap_parse_result($link, $result, $errcode, $matcheddn, $errmsg, $referrals, $ctrls),
48 $errcode,
H A Dldap_delete_ext.phpt31 ldap_parse_result($link, $result, $errcode, $matcheddn, $errmsg, $referrals, $ctrls),
32 $errcode,
H A Dldap_add_ext.phpt26 ldap_parse_result($link, $result, $errcode, $matcheddn, $errmsg, $referrals, $ctrls),
27 $errcode,
H A Dldap_rename_ext.phpt28 ldap_parse_result($link, $result, $errcode, $matcheddn, $errmsg, $referrals, $ctrls),
29 $errcode,
H A Dldap_parse_result_controls.phpt25 ldap_parse_result($link, $result, $errcode, $dn, $errmsg, $refs, $ctrls),
H A Dldap_search_paged_result_controls.phpt26 ldap_parse_result($link, $result, $errcode , $matcheddn , $errmsg , $referrals, $controls),
/php-src/ext/json/
H A Djson_parser.y37 parser->scanner.errcode = PHP_JSON_ERROR_DEPTH; \
110 parser->scanner.errcode = PHP_JSON_ERROR_STATE_MISMATCH;
166 parser->scanner.errcode = PHP_JSON_ERROR_STATE_MISMATCH;
244 parser->scanner.errcode = PHP_JSON_ERROR_INVALID_PROPERTY_NAME; in php_json_parser_object_update()
301 if (!parser->scanner.errcode) { in php_json_yyerror()
302 parser->scanner.errcode = PHP_JSON_ERROR_SYNTAX; in php_json_yyerror()
308 return parser->scanner.errcode; in php_json_parser_error_code()
H A Djson_scanner.re203 s->errcode = PHP_JSON_ERROR_CTRL_CHAR;
215 s->errcode = PHP_JSON_ERROR_CTRL_CHAR;
219 s->errcode = PHP_JSON_ERROR_SYNTAX;
223 s->errcode = PHP_JSON_ERROR_UTF8;
228 s->errcode = PHP_JSON_ERROR_CTRL_CHAR;
248 s->errcode = PHP_JSON_ERROR_UTF16;
256 s->errcode = PHP_JSON_ERROR_SYNTAX;
285 s->errcode = PHP_JSON_ERROR_UTF8;
295 s->errcode = PHP_JSON_ERROR_UTF8;
360 s->errcode = PHP_JSON_ERROR_SYNTAX;
[all …]
H A Dphp_json_scanner.h37 php_json_error_code errcode; /* error type if there is an error */ member
/php-src/ext/pdo_pgsql/
H A Dphp_pdo_pgsql_int.h31 unsigned int errcode; member
77 extern int _pdo_pgsql_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, int errcode, const char *sqlstate, co…
H A Dpgsql_driver.c67 int _pdo_pgsql_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, int errcode, const char *sqlstate, const cha… in _pdo_pgsql_error() argument
74 einfo->errcode = errcode; in _pdo_pgsql_error()
98 pdo_throw_exception(einfo->errcode, einfo->errmsg, pdo_err); in _pdo_pgsql_error()
101 return errcode; in _pdo_pgsql_error()
123 if (einfo->errcode) { in pdo_pgsql_fetch_error_func()
124 add_next_index_long(info, einfo->errcode); in pdo_pgsql_fetch_error_func()
1337 H->einfo.errcode = 0; in pdo_pgsql_handle_factory()
/php-src/ext/pdo_mysql/
H A Dmysql_driver.c61 einfo->errcode = mysql_stmt_errno(S->stmt); in _pdo_mysql_error()
63 einfo->errcode = mysql_errno(H->server); in _pdo_mysql_error()
74 if (einfo->errcode) { in _pdo_mysql_error()
75 if (einfo->errcode == 2014) { in _pdo_mysql_error()
90 } else if (einfo->errcode == 2057) { in _pdo_mysql_error()
116 pdo_throw_exception(einfo->errcode, einfo->errmsg, pdo_err); in _pdo_mysql_error()
119 PDO_DBG_RETURN(einfo->errcode); in _pdo_mysql_error()
138 if (einfo->errcode) { in pdo_mysql_fetch_error_func()
139 add_next_index_long(info, einfo->errcode); in pdo_mysql_fetch_error_func()
272 PDO_DBG_RETURN(H->einfo.errcode ? -1 : 0); in mysql_handle_doer()
[all …]
H A Dphp_pdo_mysql_int.h94 unsigned int errcode; member
/php-src/ext/pdo_sqlite/
H A Dsqlite_driver.c37 einfo->errcode = sqlite3_errcode(H->db); in _pdo_sqlite_error()
41 if (einfo->errcode != SQLITE_OK) { in _pdo_sqlite_error()
50 switch (einfo->errcode) { in _pdo_sqlite_error()
78 pdo_throw_exception(einfo->errcode, einfo->errmsg, pdo_err); in _pdo_sqlite_error()
81 return einfo->errcode; in _pdo_sqlite_error()
90 if (einfo->errcode) { in pdo_sqlite_fetch_error_func()
91 add_next_index_long(info, einfo->errcode); in pdo_sqlite_fetch_error_func()
188 H->einfo.errcode = SQLITE_ERROR; in sqlite_handle_preparer()
805 H->einfo.errcode = 0; in pdo_sqlite_handle_factory()
H A Dphp_pdo_sqlite_int.h25 unsigned int errcode; member
/php-src/ext/sqlite3/
H A Dsqlite3.c187 int errcode; in PHP_METHOD() local
198 if (errcode != SQLITE_OK) { in PHP_METHOD()
215 int errcode; in PHP_METHOD() local
228 if (errcode != SQLITE_OK) { in PHP_METHOD()
512 int errcode; in PHP_METHOD() local
533 if (errcode != SQLITE_OK) { in PHP_METHOD()
574 int errcode; in PHP_METHOD() local
576 if (errcode != SQLITE_OK) { in PHP_METHOD()
692 int errcode; in PHP_METHOD() local
694 if (errcode != SQLITE_OK) { in PHP_METHOD()
[all …]
/php-src/ext/mysqlnd/
H A Dmysqlnd_vio.c192 int errcode = 0; in MYSQLND_METHOD() local
214 NULL /*ctx*/, &errstr, &errcode); in MYSQLND_METHOD()
220 errcode = CR_CONNECTION_ERROR; in MYSQLND_METHOD()
/php-src/ext/ldap/
H A Dldap.c334 int errcode, rc; in _php_ldap_control_to_array() local
338 rc = ldap_parse_sortresponse_control(ld, ctrl, &errcode, &attribute); in _php_ldap_control_to_array()
344 add_assoc_long(&value, "errcode", errcode); in _php_ldap_control_to_array()
354 int target, count, errcode, rc; in _php_ldap_control_to_array() local
359 rc = ldap_parse_vlvresponse_control(ld, ctrl, &target, &count, &context, &errcode); in _php_ldap_control_to_array()
367 add_assoc_long(&value, "errcode", errcode); in _php_ldap_control_to_array()
3313 zval *link, *result, *errcode, *matcheddn, *errmsg, *referrals, *serverctrls; in PHP_FUNCTION() local
3321 …s(myargcount, "OOz|zzzz", &link, ldap_link_ce, &result, ldap_result_ce, &errcode, &matcheddn, &err… in PHP_FUNCTION()
3342 ZEND_TRY_ASSIGN_REF_LONG(errcode, lerrcode); in PHP_FUNCTION()
/php-src/ext/opcache/jit/ir/dynasm/
H A Dminilua.c529 static void luaD_throw(lua_State*L,int errcode);
989 static void luaD_seterrorobj(lua_State*L,int errcode,StkId oldtop){
990 switch(errcode){
1025 static void luaD_throw(lua_State*L,int errcode){
1027 L->errorJmp->status=errcode;
1031 L->status=cast_byte(errcode);
1033 resetstack(L,errcode);

Completed in 78 milliseconds