/PHP-7.1/ext/session/tests/ |
H A D | 005.phpt | 31 return $GLOBALS["hnd"]->data; 37 $GLOBALS["hnd"]->data = $val; 50 $hnd = new handler; 57 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),… 61 session_decode($hnd->data); 71 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),… 84 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
|
H A D | 025.phpt | 32 return $GLOBALS["hnd"]->data; 38 $GLOBALS["hnd"]->data = $val; 58 $hnd = new handler; 65 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),… 79 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),… 95 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
|
H A D | 004.phpt | 29 return $GLOBALS["hnd"]->data; 35 $GLOBALS["hnd"]->data = $val; 48 $hnd = new handler; 55 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),… 67 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
|
H A D | 024.phpt | 30 return $GLOBALS["hnd"]->data; 36 $GLOBALS["hnd"]->data = $val; 49 $hnd = new handler; 56 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),… 71 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
|
/PHP-7.1/ext/xmlreader/ |
H A D | php_xmlreader.c | 63 xmlreader_prop_handler hnd; in xmlreader_register_prop_handler() local 65 hnd.read_char_func = read_char_func; in xmlreader_register_prop_handler() 66 hnd.read_int_func = read_int_func; in xmlreader_register_prop_handler() 67 hnd.type = rettype; in xmlreader_register_prop_handler() 79 if (hnd->read_char_func) { in xmlreader_property_reader() 82 if (hnd->read_int_func) { in xmlreader_property_reader() 92 switch (hnd->type) { in xmlreader_property_reader() 121 xmlreader_prop_handler *hnd = NULL; in xmlreader_get_property_ptr_ptr() local 137 if (hnd == NULL) { in xmlreader_get_property_ptr_ptr() 172 if (hnd != NULL) { in xmlreader_read_property() [all …]
|
/PHP-7.1/ext/dba/ |
H A D | php_dba.h | 55 struct dba_handler *hnd; member 90 char* (*info)(struct dba_handler *hnd, dba_info *); 117 char *dba_info_##x(dba_handler *hnd, dba_info *info)
|
H A D | dba.c | 422 if (info->hnd) { in dba_close() 423 info->hnd->close(info); in dba_close() 942 info->hnd = hptr; in php_dba_open() 1003 if(info->hnd->exists(info, key_str, key_len) == SUCCESS) { in PHP_FUNCTION() 1021 if (!strcmp(info->hnd->name, "cdb")) { in PHP_FUNCTION() 1026 } else if (!strcmp(info->hnd->name, "inifile")) { in PHP_FUNCTION() 1100 fkey = info->hnd->firstkey(info, &len); in PHP_FUNCTION() 1127 nkey = info->hnd->nextkey(info, &len); in PHP_FUNCTION() 1148 if(info->hnd->delete(info, key_str, key_len) == SUCCESS) in PHP_FUNCTION() 1191 if (info->hnd->optimize(info) == SUCCESS) { in PHP_FUNCTION() [all …]
|
H A D | dba_dbm.c | 198 return dba_info_gdbm(hnd, info); in DBA_INFO_FUNC()
|
H A D | dba_cdb.c | 331 if (!strcmp(hnd->name, "cdb")) { in DBA_INFO_FUNC()
|
/PHP-7.1/ext/zip/ |
H A D | php_zip.c | 782 zip_prop_handler hnd; in php_zip_register_prop_handler() local 787 hnd.type = rettype; in php_zip_register_prop_handler() 802 if (hnd->read_int_func) { in php_zip_property_reader() 817 switch (hnd->type) { in php_zip_property_reader() 845 zip_prop_handler *hnd = NULL; in php_zip_get_property_ptr_ptr() local 861 if (hnd == NULL) { in php_zip_get_property_ptr_ptr() 879 zip_prop_handler *hnd = NULL; in php_zip_read_property() local 895 if (hnd != NULL) { in php_zip_read_property() 917 zip_prop_handler *hnd = NULL; in php_zip_has_property() local 934 if (hnd != NULL) { in php_zip_has_property() [all …]
|
/PHP-7.1/ext/dom/ |
H A D | php_dom.c | 304 dom_prop_handler hnd; in dom_register_prop_handler() local 334 dom_prop_handler *hnd = NULL; in dom_read_property() local 342 if (hnd) { in dom_read_property() 343 int ret = hnd->read_func(obj, rv); in dom_read_property() 364 dom_prop_handler *hnd = NULL; in dom_write_property() local 369 if (hnd) { in dom_write_property() 370 hnd->write_func(obj, value); in dom_write_property() 385 dom_prop_handler *hnd = NULL; in dom_property_exists() local 391 if (hnd) { in dom_property_exists() 396 } else if (hnd->read_func(obj, &tmp) == SUCCESS) { in dom_property_exists() [all …]
|
/PHP-7.1/ext/snmp/ |
H A D | snmp.c | 1957 php_snmp_prop_handler *hnd; in php_snmp_read_property() local 1968 hnd = zend_hash_find_ptr(&php_snmp_properties, Z_STR_P(member)); in php_snmp_read_property() 1970 if (hnd && hnd->read_func) { in php_snmp_read_property() 1971 ret = hnd->read_func(obj, rv); in php_snmp_read_property() 1996 php_snmp_prop_handler *hnd; in php_snmp_write_property() local 2008 if (hnd && hnd->write_func) { in php_snmp_write_property() 2009 hnd->write_func(obj, value); in php_snmp_write_property() 2032 php_snmp_prop_handler *hnd; in php_snmp_has_property() local 2078 php_snmp_prop_handler *hnd; in php_snmp_get_properties() local 2086 ZEND_HASH_FOREACH_STR_KEY_PTR(&php_snmp_properties, key, hnd) { in php_snmp_get_properties() [all …]
|
/PHP-7.1/ext/mysqli/ |
H A D | mysqli.c | 305 mysqli_prop_handler *hnd = NULL; in mysqli_read_property() local 316 hnd = zend_hash_find_ptr(obj->prop_handler, Z_STR_P(member)); in mysqli_read_property() 319 if (hnd) { in mysqli_read_property() 320 retval = hnd->read_func(obj, rv); in mysqli_read_property() 342 mysqli_prop_handler *hnd = NULL; in mysqli_write_property() local 353 hnd = zend_hash_find_ptr(obj->prop_handler, Z_STR_P(member)); in mysqli_write_property() 356 if (hnd) { in mysqli_write_property() 357 hnd->write_func(obj, value); in mysqli_write_property()
|