Searched refs:probe (Results 1 – 8 of 8) sorted by relevance
/PHP-8.2/ext/oci8/ |
H A D | oci8_dtrace.d | 22 probe oci8__connect__return(void *connection); 23 probe oci8__connection__close(void *connection); 24 probe oci8__error(int status, long errcode); 26 probe oci8__sqltext(void *connection, char *client_id, void *statement, char *sql); 28 probe oci8__connect__p__dtor__close(void *connection); 29 probe oci8__connect__p__dtor__release(void *connection); 30 probe oci8__connect__lookup(void *connection, int is_stub); 31 probe oci8__connect__expiry(void *connection, int is_stub, long idle_expiry, long timestamp); 33 probe oci8__sesspool__create(void *session_pool); 34 probe oci8__sesspool__stats(unsigned long free, unsigned long busy, unsigned long open); [all …]
|
/PHP-8.2/Zend/ |
H A D | zend_dtrace.d | 20 probe exception__caught(char *classname); 21 probe exception__thrown(char* classname); 22 probe request__startup(char* request_file, char* request_uri, char* request_method); 23 probe request__shutdown(char* request_file, char* request_uri, char* request_method); 24 probe compile__file__entry(char * compile_file, char *compile_file_translated); 25 probe compile__file__return(char *compile_file, char *compile_file_translated); 26 probe error(char *errormsg, char *request_file, int lineno); 27 probe execute__entry(char* request_file, int lineno); 28 probe execute__return(char* request_file, int lineno); 29 …probe function__entry(char* function_name, char* request_file, int lineno, char* classname, char* … [all …]
|
/PHP-8.2/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_gb18030.c | 83 int probe = (l + r) >> 1; in mbfl_bisec_srch() local 84 unsigned short lo = tbl[2 * probe], hi = tbl[(2 * probe) + 1]; in mbfl_bisec_srch() 86 r = probe - 1; in mbfl_bisec_srch() 88 l = probe + 1; in mbfl_bisec_srch() 90 return probe; in mbfl_bisec_srch() 101 int probe = (l + r) >> 1; in mbfl_bisec_srch2() local 102 unsigned short val = tbl[probe]; in mbfl_bisec_srch2() 104 r = probe - 1; in mbfl_bisec_srch2() 106 l = probe + 1; in mbfl_bisec_srch2() 108 return probe; in mbfl_bisec_srch2()
|
/PHP-8.2/ext/pdo_oci/ |
H A D | config.w32 | 35 /* probe for some functions not present in older versions */
|
/PHP-8.2/ext/standard/tests/network/ |
H A D | udp6loop.phpt | 10 * cannot tell for sure if IPv6 works until we probe it at run time,
|
/PHP-8.2/ext/gd/libgd/ |
H A D | gd_gif_out.c | 569 probe: 578 goto probe;
|
/PHP-8.2/ext/mysqli/tests/ |
H A D | mysqli_auth_pam.phpt | 35 die(sprintf("SKIP MariaDB probe of GLOBAL VARIABLES failed [%d] %s\n",
|
/PHP-8.2/ext/mbstring/ |
H A D | mbstring.c | 2303 int probe = (lo + hi) / 2; in character_width() local 2304 if (c < mbfl_eaw_table[probe].begin) { in character_width() 2305 hi = probe; in character_width() 2306 } else if (c > mbfl_eaw_table[probe].end) { in character_width() 2307 lo = probe + 1; in character_width()
|
Completed in 55 milliseconds