Home
last modified time | relevance | path

Searched refs:le (Results 26 – 50 of 53) sorted by relevance

123

/PHP-5.3/ext/standard/tests/file/
H A Dfscanf_variation47.phpt34 $scientific_formats = array( "%e", "%he", "%le", "%Le", " %e", "%e ", "% e", "\t%e", "\n%e", "%4e",…
H A Dfscanf_variation50.phpt31 $scientific_formats = array( "%e", "%he", "%le", "%Le", " %e", "%e ", "% e", "\t%e", "\n%e", "%4e",…
H A Dfscanf_variation48.phpt39 $scientific_formats = array( "%e", "%he", "%le", "%Le", " %e", "%e ", "% e", "\t%e", "\n%e", "%4e",…
H A Dfscanf_variation46.phpt43 $scientific_formats = array( "%e", "%he", "%le", "%Le", " %e", "%e ", "% e", "\t%e", "\n%e", "%4e",…
H A Dfscanf_variation49.phpt45 $scientific_formats = array( "%e", "%he", "%le", "%Le", " %e", "%e ", "% e", "\t%e", "\n%e", "%4e",…
/PHP-5.3/ext/sybase_ct/
H A Dphp_sybase_ct.c238 static int _clean_invalid_results(zend_rsrc_list_entry *le TSRMLS_DC)
240 if (Z_TYPE_P(le) == le_result) {
241 sybase_link *sybase_ptr = ((sybase_result *) le->ptr)->sybase_ptr;
762 zend_rsrc_list_entry *le; in php_sybase_do_connect() local
765 …if (zend_hash_find(&EG(persistent_list), hashed_details, hashed_details_length+1, (void **) &le)==… in php_sybase_do_connect()
805 if (Z_TYPE_P(le) != le_plink) { in php_sybase_do_connect()
810 sybase_ptr = (sybase_link *) le->ptr; in php_sybase_do_connect()
/PHP-5.3/ext/mssql/
H A Dphp_mssql.c293 static int _clean_invalid_results(zend_rsrc_list_entry *le TSRMLS_DC) in _clean_invalid_results()
295 if (Z_TYPE_P(le) == le_result) { in _clean_invalid_results()
296 mssql_link *mssql_ptr = ((mssql_result *) le->ptr)->mssql_ptr; in _clean_invalid_results()
635 zend_rsrc_list_entry *le; in php_mssql_do_connect() local
638 …EG(persistent_list), hashed_details, hashed_details_length + 1, (void **) &le)==FAILURE) { /* we … in php_mssql_do_connect()
708 if (Z_TYPE_P(le) != le_plink) { in php_mssql_do_connect()
717 mssql_ptr = (mssql_link *) le->ptr; in php_mssql_do_connect()
/PHP-5.3/ext/mysql/
H A Dphp_mysql.c612 static int php_mysql_persistent_helper(zend_rsrc_list_entry *le TSRMLS_DC) in php_mysql_persistent_helper()
614 if (le->type == le_plink) { in php_mysql_persistent_helper()
615 mysqlnd_end_psession(((php_mysql_conn *) le->ptr)->conn); in php_mysql_persistent_helper()
815 zend_rsrc_list_entry *le; local
818 …if (zend_hash_find(&EG(persistent_list), hashed_details, hashed_details_length+1, (void **) &le)==…
884 if (Z_TYPE_P(le) != le_plink) {
887 mysql = (php_mysql_conn *) le->ptr;
/PHP-5.3/ext/hash/
H A Dhash.c473 zend_rsrc_list_entry *le; in PHP_FUNCTION() local
510 if (zend_hash_index_find(&EG(regular_list), Z_RESVAL_P(zhash), (void *) &le)==SUCCESS) { in PHP_FUNCTION()
513 le->refcount = 1; in PHP_FUNCTION()
/PHP-5.3/ext/standard/tests/strings/
H A Dget_html_translation_table_basic2.phpt493 string(4) "≤"
1000 string(4) "≤"
1509 string(4) "≤"
H A Dsprintf_variation49.phpt33 "%e", "%he", "%le",
H A Dhtml_entity_decode_html4.phpt236 "≤",
H A Dsprintf_variation46.phpt36 "%e", "%he", "%le",
H A Dsprintf_variation47.phpt37 "%e", "%he", "%le",
H A Dsprintf_variation50.phpt37 "%e", "%he", "%le",
H A Dget_html_translation_table_basic1.phpt482 string(4) "≤"
H A Dhtmlentities_html4.phpt292 ≤ U+02264
/PHP-5.3/sapi/apache2filter/
H A Dconfig.m464 if test "$APACHE_VERSION" -le 2000000; then
/PHP-5.3/sapi/apache2handler/
H A Dconfig.m463 if test "$APACHE_VERSION" -le 2000000; then
/PHP-5.3/ext/pgsql/
H A Dpgsql.c1131 zend_rsrc_list_entry *le; local
1134 …if (zend_hash_find(&EG(persistent_list), str.c, str.len+1, (void **) &le)==FAILURE) { /* we don't…
1171 if (Z_TYPE_P(le) != le_plink) {
1179 pg_result = PQexec(le->ptr, "select 1");
1182 if (PQstatus(le->ptr)==CONNECTION_BAD) { /* the link died */
1183 if (le->ptr == NULL) {
1185 le->ptr=PQconnectdb(connstring);
1187 le->ptr=PQsetdb(host,port,options,tty,dbname);
1191 PQreset(le->ptr);
1193 if (le->ptr==NULL || PQstatus(le->ptr)==CONNECTION_BAD) {
[all …]
/PHP-5.3/ext/odbc/
H A Dphp_odbc.c1022 static int _close_pconn_with_id(zend_rsrc_list_entry *le, int *id TSRMLS_DC) in _close_pconn_with_id() argument
1024 if(Z_TYPE_P(le) == le_pconn && (((odbc_connection *)(le->ptr))->id == *id)){ in _close_pconn_with_id()
2534 zend_rsrc_list_entry *le; in odbc_do_connect() local
2537 …if (zend_hash_find(&EG(persistent_list), hashed_details, hashed_len + 1, (void **) &le) == FAILURE… in odbc_do_connect()
2568 if (Z_TYPE_P(le) != le_pconn) { in odbc_do_connect()
2574 db_conn = (odbc_connection *)le->ptr; in odbc_do_connect()
/PHP-5.3/
H A Dconfig.sub280 | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
1169 sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele)
/PHP-5.3/ext/mysqlnd/
H A Dmysqlnd_net.c158 zend_rsrc_list_entry *le; in MYSQLND_METHOD() local
160 …if (zend_hash_find(&EG(persistent_list), hashed_details, hashed_details_len + 1, (void*) &le) == S… in MYSQLND_METHOD()
/PHP-5.3/ext/mysqli/
H A Dmysqli.c876 static int php_mysqli_persistent_helper_once(zend_rsrc_list_entry *le TSRMLS_DC) in php_mysqli_persistent_helper_once()
878 if (le->type == php_le_pmysqli()) { in php_mysqli_persistent_helper_once()
879 mysqli_plist_entry *plist = (mysqli_plist_entry *) le->ptr; in php_mysqli_persistent_helper_once()
H A Dmysqli_api.c587 zend_rsrc_list_entry *le; in php_mysqli_close() local
588 …ind(&EG(persistent_list), mysql->hash_key, strlen(mysql->hash_key) + 1, (void **)&le) == SUCCESS) { in php_mysqli_close()
589 if (Z_TYPE_P(le) == php_le_pmysqli()) { in php_mysqli_close()
590 mysqli_plist_entry *plist = (mysqli_plist_entry *) le->ptr; in php_mysqli_close()

Completed in 166 milliseconds

123