Searched refs:probe (Results 1 – 8 of 8) sorted by relevance
/PHP-8.3/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.3/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.3/ext/pdo_oci/ |
H A D | config.w32 | 35 /* probe for some functions not present in older versions */
|
/PHP-8.3/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.3/ext/gd/libgd/ |
H A D | gd_gif_out.c | 569 probe: 578 goto probe;
|
/PHP-8.3/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.3/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_cjk.c | 43 int probe = (l + r) >> 1; in mbfl_bisec_srch() local 44 unsigned short lo = tbl[2 * probe], hi = tbl[(2 * probe) + 1]; in mbfl_bisec_srch() 46 r = probe - 1; in mbfl_bisec_srch() 48 l = probe + 1; in mbfl_bisec_srch() 50 return probe; in mbfl_bisec_srch() 61 int probe = (l + r) >> 1; in mbfl_bisec_srch2() local 62 unsigned short val = tbl[probe]; in mbfl_bisec_srch2() 64 r = probe - 1; in mbfl_bisec_srch2() 66 l = probe + 1; in mbfl_bisec_srch2() 68 return probe; in mbfl_bisec_srch2()
|
/PHP-8.3/ext/mbstring/ |
H A D | mbstring.c | 2441 int probe = (lo + hi) / 2; in character_width() local 2442 if (c < mbfl_eaw_table[probe].begin) { in character_width() 2443 hi = probe; in character_width() 2444 } else if (c > mbfl_eaw_table[probe].end) { in character_width() 2445 lo = probe + 1; in character_width()
|
Completed in 47 milliseconds