Home
last modified time | relevance | path

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

123

/PHP-5.5/ext/standard/html_tables/
H A Dents_html401.txt200 le 2264
H A Dents_xhtml.txt232 le 2264
/PHP-5.5/ext/mssql/
H A Dphp_mssql.c298 static int _clean_invalid_results(zend_rsrc_list_entry *le TSRMLS_DC) in _clean_invalid_results()
300 if (Z_TYPE_P(le) == le_result) { in _clean_invalid_results()
301 mssql_link *mssql_ptr = ((mssql_result *) le->ptr)->mssql_ptr; in _clean_invalid_results()
640 zend_rsrc_list_entry *le; in php_mssql_do_connect() local
643 …EG(persistent_list), hashed_details, hashed_details_length + 1, (void **) &le)==FAILURE) { /* we … in php_mssql_do_connect()
713 if (Z_TYPE_P(le) != le_plink) { in php_mssql_do_connect()
722 mssql_ptr = (mssql_link *) le->ptr; in php_mssql_do_connect()
/PHP-5.5/ext/mysql/
H A Dphp_mysql.c642 static int php_mysql_persistent_helper(zend_rsrc_list_entry *le TSRMLS_DC) in php_mysql_persistent_helper()
644 if (le->type == le_plink) { in php_mysql_persistent_helper()
645 mysqlnd_end_psession(((php_mysql_conn *) le->ptr)->conn); in php_mysql_persistent_helper()
849 zend_rsrc_list_entry *le; local
852 …if (zend_hash_find(&EG(persistent_list), hashed_details, hashed_details_length+1, (void **) &le)==…
918 if (Z_TYPE_P(le) != le_plink) {
921 mysql = (php_mysql_conn *) le->ptr;
/PHP-5.5/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.5/ext/standard/tests/strings/
H A Dget_html_translation_table_basic7.phpt195 [≤] => ≤
H A Dget_html_translation_table_basic2.phpt329 string(4) "≤"
838 string(4) "≤"
1345 string(4) "≤"
H A Dsprintf_variation49.phpt33 "%e", "%he", "%le",
H A Dhtml_entity_decode_html4.phpt236 "≤",
H A Dsprintf_variation47.phpt37 "%e", "%he", "%le",
H A Dsprintf_variation50.phpt37 "%e", "%he", "%le",
H A Dsprintf_variation46.phpt36 "%e", "%he", "%le",
H A Dget_html_translation_table_basic1.phpt316 string(4) "≤"
H A Dhtmlentities_html4.phpt292 ≤ U+02264
/PHP-5.5/sapi/apache2filter/
H A Dconfig.m464 if test "$APACHE_VERSION" -le 2000000; then
/PHP-5.5/sapi/apache2handler/
H A Dconfig.m463 if test "$APACHE_VERSION" -le 2000000; then
/PHP-5.5/ext/hash/
H A Dhash.c499 zend_rsrc_list_entry *le; in PHP_FUNCTION() local
536 if (zend_hash_index_find(&EG(regular_list), Z_RESVAL_P(zhash), (void *) &le)==SUCCESS) { in PHP_FUNCTION()
539 le->refcount = 1; in PHP_FUNCTION()
/PHP-5.5/Zend/
H A Dzend_language_scanner.l285 int le = 0; in zend_multibyte_detect_utf_encoding() local
308 le = 0; in zend_multibyte_detect_utf_encoding()
312 le = 1; in zend_multibyte_detect_utf_encoding()
319 return le ? zend_multibyte_encoding_utf16le : zend_multibyte_encoding_utf16be; in zend_multibyte_detect_utf_encoding()
321 return le ? zend_multibyte_encoding_utf32le : zend_multibyte_encoding_utf32be; in zend_multibyte_detect_utf_encoding()
/PHP-5.5/ext/standard/tests/file/
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.5/ext/mysqli/
H A Dmysqli.c928 static int php_mysqli_persistent_helper_once(zend_rsrc_list_entry *le TSRMLS_DC) in php_mysqli_persistent_helper_once()
930 if (le->type == php_le_pmysqli()) { in php_mysqli_persistent_helper_once()
931 mysqli_plist_entry *plist = (mysqli_plist_entry *) le->ptr; in php_mysqli_persistent_helper_once()
/PHP-5.5/ext/pgsql/
H A Dpgsql.c1281 zend_rsrc_list_entry *le; local
1284 …if (zend_hash_find(&EG(persistent_list), str.c, str.len+1, (void **) &le)==FAILURE) { /* we don't…
1321 if (Z_TYPE_P(le) != le_plink) {
1329 pg_result = PQexec(le->ptr, "select 1");
1332 if (PQstatus(le->ptr)==CONNECTION_BAD) { /* the link died */
1333 if (le->ptr == NULL) {
1335 le->ptr=PQconnectdb(connstring);
1337 le->ptr=PQsetdb(host,port,options,tty,dbname);
1341 PQreset(le->ptr);
1343 if (le->ptr==NULL || PQstatus(le->ptr)==CONNECTION_BAD) {
[all …]
/PHP-5.5/
H A Dconfig.sub311 …| sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3…
/PHP-5.5/ext/odbc/
H A Dphp_odbc.c1061 static int _close_pconn_with_id(zend_rsrc_list_entry *le, int *id TSRMLS_DC) in _close_pconn_with_id() argument
1063 if(Z_TYPE_P(le) == le_pconn && (((odbc_connection *)(le->ptr))->id == *id)){ in _close_pconn_with_id()
2584 zend_rsrc_list_entry *le; in odbc_do_connect() local
2587 …if (zend_hash_find(&EG(persistent_list), hashed_details, hashed_len + 1, (void **) &le) == FAILURE… in odbc_do_connect()
2618 if (Z_TYPE_P(le) != le_pconn) { in odbc_do_connect()
2624 db_conn = (odbc_connection *)le->ptr; in odbc_do_connect()

Completed in 107 milliseconds

123