Home
last modified time | relevance | path

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

/PHP-8.3/ext/session/tests/user_session_module/
H A Dbasic_set_save_handler_test02.phpt31 return $GLOBALS["hnd"]->data;
37 $GLOBALS["hnd"]->data = $val;
50 $hnd = new handler;
58 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
62 session_decode($hnd->data);
72 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
85 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
H A Dbasic_set_save_handler_test.phpt30 return $GLOBALS["hnd"]->data;
36 $GLOBALS["hnd"]->data = $val;
49 $hnd = new handler;
57 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
69 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
/PHP-8.3/ext/xmlreader/
H A Dphp_xmlreader.c64 xmlreader_prop_handler hnd; in xmlreader_register_prop_handler() local
67 hnd.read_char_func = read_char_func; in xmlreader_register_prop_handler()
68 hnd.read_int_func = read_int_func; in xmlreader_register_prop_handler()
69 hnd.type = rettype; in xmlreader_register_prop_handler()
83 if (hnd->read_char_func) { in xmlreader_property_reader()
86 if (hnd->read_int_func) { in xmlreader_property_reader()
96 switch (hnd->type) { in xmlreader_property_reader()
122 xmlreader_prop_handler *hnd = NULL; in xmlreader_get_property_ptr_ptr() local
130 if (hnd == NULL) { in xmlreader_get_property_ptr_ptr()
151 if (hnd != NULL) { in xmlreader_read_property()
[all …]
/PHP-8.3/ext/dba/
H A Ddba.c262 if (info->hnd) { in dba_close()
263 info->hnd->close(info); in dba_close()
878 info->hnd = hptr; in php_dba_open()
948 RETVAL_BOOL(info->hnd->exists(info, key_str) == SUCCESS); in PHP_FUNCTION()
995 if (!strcmp(info->hnd->name, "cdb")) { in PHP_FUNCTION()
1001 } else if (!strcmp(info->hnd->name, "inifile")) { in PHP_FUNCTION()
1070 zend_string *fkey = info->hnd->firstkey(info); in PHP_FUNCTION()
1092 zend_string *nkey = info->hnd->nextkey(info); in PHP_FUNCTION()
1127 RETVAL_BOOL(info->hnd->delete(info, key_str) == SUCCESS); in PHP_FUNCTION()
1161 if (info->hnd->optimize(info) == SUCCESS) { in PHP_FUNCTION()
[all …]
H A Dphp_dba.h51 const struct dba_handler *hnd; member
88 char* (*info)(const struct dba_handler *hnd, dba_info *);
115 char *dba_info_##x(const dba_handler *hnd, dba_info *info)
H A Ddba_dbm.c194 return dba_info_gdbm(hnd, info); in DBA_INFO_FUNC()
H A Ddba_cdb.c323 if (!strcmp(hnd->name, "cdb")) { in DBA_INFO_FUNC()
/PHP-8.3/ext/dom/
H A Dphp_dom.c280 dom_prop_handler hnd; in dom_register_prop_handler() local
283 hnd.read_func = read_func; in dom_register_prop_handler()
284 hnd.write_func = write_func; in dom_register_prop_handler()
292 dom_prop_handler hnd; in dom_override_prop_handler() local
293 hnd.read_func = read_func; in dom_override_prop_handler()
294 hnd.write_func = write_func; in dom_override_prop_handler()
314 dom_prop_handler *hnd = NULL; in dom_read_property() local
320 if (hnd) { in dom_read_property()
344 if (hnd) { in dom_write_property()
345 if (!hnd->write_func) { in dom_write_property()
[all …]
/PHP-8.3/ext/zip/
H A Dphp_zip.c844 zip_prop_handler hnd; in php_zip_register_prop_handler() local
849 hnd.type = rettype; in php_zip_register_prop_handler()
868 switch (hnd->type) { in php_zip_property_reader()
891 zip_prop_handler *hnd = NULL; in php_zip_get_property_ptr_ptr() local
899 if (hnd == NULL) { in php_zip_get_property_ptr_ptr()
911 zip_prop_handler *hnd = NULL; in php_zip_write_property() local
919 if (hnd != NULL) { in php_zip_write_property()
931 zip_prop_handler *hnd = NULL; in php_zip_read_property() local
939 if (hnd != NULL) { in php_zip_read_property()
964 if (hnd != NULL) { in php_zip_has_property()
[all …]
/PHP-8.3/ext/mysqli/
H A Dmysqli.c246 mysqli_prop_handler *hnd = zend_hash_find_ptr(obj->prop_handler, name); in mysqli_read_property() local
247 if (hnd) { in mysqli_read_property()
248 if (hnd->read_func(obj, rv, type == BP_VAR_IS) == SUCCESS) { in mysqli_read_property()
265 const mysqli_prop_handler *hnd = zend_hash_find_ptr(obj->prop_handler, name); in mysqli_write_property() local
266 if (hnd) { in mysqli_write_property()
267 if (!hnd->write_func) { in mysqli_write_property()
282 hnd->write_func(obj, &tmp); in mysqli_write_property()
285 hnd->write_func(obj, value); in mysqli_write_property()
/PHP-8.3/ext/snmp/
H A Dsnmp.c1690 php_snmp_prop_handler *hnd; in php_snmp_read_property() local
1696 if (hnd && hnd->read_func) { in php_snmp_read_property()
1697 ret = hnd->read_func(obj, rv); in php_snmp_read_property()
1717 if (hnd) { in php_snmp_write_property()
1718 if (!hnd->write_func) { in php_snmp_write_property()
1732 hnd->write_func(obj, &tmp); in php_snmp_write_property()
1735 hnd->write_func(obj, value); in php_snmp_write_property()
1749 php_snmp_prop_handler *hnd; in php_snmp_has_property() local
1794 php_snmp_prop_handler *hnd; in php_snmp_get_properties() local
1803 if (!hnd->read_func || hnd->read_func(obj, &rv) != SUCCESS) { in php_snmp_get_properties()
[all …]

Completed in 37 milliseconds