Home
last modified time | relevance | path

Searched refs:hnd (Results 1 – 13 of 13) sorted by relevance

/PHP-8.1/ext/session/tests/
H A D005.phpt33 return $GLOBALS["hnd"]->data;
39 $GLOBALS["hnd"]->data = $val;
52 $hnd = new handler;
59 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
63 session_decode($hnd->data);
73 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
86 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
H A D025.phpt34 return $GLOBALS["hnd"]->data;
40 $GLOBALS["hnd"]->data = $val;
53 $hnd = new handler;
60 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
74 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
90 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
H A D024.phpt33 return $GLOBALS["hnd"]->data;
39 $GLOBALS["hnd"]->data = $val;
52 $hnd = new handler;
59 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
74 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
H A D004.phpt32 return $GLOBALS["hnd"]->data;
38 $GLOBALS["hnd"]->data = $val;
51 $hnd = new handler;
58 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
70 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
/PHP-8.1/ext/xmlreader/
H A Dphp_xmlreader.c63 xmlreader_prop_handler hnd; in xmlreader_register_prop_handler() local
66 hnd.read_char_func = read_char_func; in xmlreader_register_prop_handler()
67 hnd.read_int_func = read_int_func; in xmlreader_register_prop_handler()
68 hnd.type = rettype; in xmlreader_register_prop_handler()
82 if (hnd->read_char_func) { in xmlreader_property_reader()
85 if (hnd->read_int_func) { in xmlreader_property_reader()
95 switch (hnd->type) { in xmlreader_property_reader()
121 xmlreader_prop_handler *hnd = NULL; in xmlreader_get_property_ptr_ptr() local
129 if (hnd == NULL) { in xmlreader_get_property_ptr_ptr()
150 if (hnd != NULL) { in xmlreader_read_property()
[all …]
/PHP-8.1/ext/dba/
H A Dphp_dba.h51 struct dba_handler *hnd; member
86 char* (*info)(struct dba_handler *hnd, dba_info *);
113 char *dba_info_##x(dba_handler *hnd, dba_info *info)
H A Ddba.c325 if (info->hnd) { in dba_close()
326 info->hnd->close(info); in dba_close()
891 info->hnd = hptr; in php_dba_open()
945 if(info->hnd->exists(info, key_str, key_len) == SUCCESS) { in PHP_FUNCTION()
962 if (!strcmp(info->hnd->name, "cdb")) { in PHP_FUNCTION()
967 } else if (!strcmp(info->hnd->name, "inifile")) { in PHP_FUNCTION()
1039 fkey = info->hnd->firstkey(info, &len); in PHP_FUNCTION()
1065 nkey = info->hnd->nextkey(info, &len); in PHP_FUNCTION()
1085 if(info->hnd->delete(info, key_str, key_len) == SUCCESS) in PHP_FUNCTION()
1125 if (info->hnd->optimize(info) == SUCCESS) { in PHP_FUNCTION()
[all …]
H A Ddba_dbm.c193 return dba_info_gdbm(hnd, info); in DBA_INFO_FUNC()
H A Ddba_cdb.c327 if (!strcmp(hnd->name, "cdb")) { in DBA_INFO_FUNC()
/PHP-8.1/ext/zip/
H A Dphp_zip.c832 zip_prop_handler hnd; in php_zip_register_prop_handler() local
837 hnd.type = rettype; in php_zip_register_prop_handler()
856 switch (hnd->type) { in php_zip_property_reader()
879 zip_prop_handler *hnd = NULL; in php_zip_get_property_ptr_ptr() local
887 if (hnd == NULL) { in php_zip_get_property_ptr_ptr()
899 zip_prop_handler *hnd = NULL; in php_zip_write_property() local
907 if (hnd != NULL) { in php_zip_write_property()
919 zip_prop_handler *hnd = NULL; in php_zip_read_property() local
927 if (hnd != NULL) { in php_zip_read_property()
952 if (hnd != NULL) { in php_zip_has_property()
[all …]
/PHP-8.1/ext/dom/
H A Dphp_dom.c277 dom_prop_handler hnd; in dom_register_prop_handler() local
280 hnd.read_func = read_func; in dom_register_prop_handler()
281 hnd.write_func = write_func; in dom_register_prop_handler()
303 dom_prop_handler *hnd = NULL; in dom_read_property() local
313 if (hnd) { in dom_read_property()
331 dom_prop_handler *hnd = NULL; in dom_write_property() local
337 if (hnd) { in dom_write_property()
338 if (!hnd->write_func) { in dom_write_property()
351 hnd->write_func(obj, &tmp); in dom_write_property()
367 dom_prop_handler *hnd = NULL; in dom_property_exists() local
[all …]
/PHP-8.1/ext/snmp/
H A Dsnmp.c1692 php_snmp_prop_handler *hnd; in php_snmp_read_property() local
1698 if (hnd && hnd->read_func) { in php_snmp_read_property()
1699 ret = hnd->read_func(obj, rv); in php_snmp_read_property()
1719 if (hnd) { in php_snmp_write_property()
1720 if (!hnd->write_func) { in php_snmp_write_property()
1734 hnd->write_func(obj, &tmp); in php_snmp_write_property()
1737 hnd->write_func(obj, value); in php_snmp_write_property()
1751 php_snmp_prop_handler *hnd; in php_snmp_has_property() local
1796 php_snmp_prop_handler *hnd; in php_snmp_get_properties() local
1805 if (!hnd->read_func || hnd->read_func(obj, &rv) != SUCCESS) { in php_snmp_get_properties()
[all …]
/PHP-8.1/ext/mysqli/
H A Dmysqli.c295 mysqli_prop_handler *hnd = zend_hash_find_ptr(obj->prop_handler, name); in mysqli_read_property() local
296 if (hnd) { in mysqli_read_property()
297 if (hnd->read_func(obj, rv, type == BP_VAR_IS) == SUCCESS) { in mysqli_read_property()
314 const mysqli_prop_handler *hnd = zend_hash_find_ptr(obj->prop_handler, name); in mysqli_write_property() local
315 if (hnd) { in mysqli_write_property()
316 if (!hnd->write_func) { in mysqli_write_property()
331 hnd->write_func(obj, &tmp); in mysqli_write_property()
334 hnd->write_func(obj, value); in mysqli_write_property()

Completed in 56 milliseconds