Home
last modified time | relevance | path

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

/PHP-7.4/ext/session/tests/
H A D005.phpt31 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 D025.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"),…
72 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
88 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
H A D004.phpt30 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"),…
68 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
H A D024.phpt31 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"),…
72 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
/PHP-7.4/ext/xmlreader/
H A Dphp_xmlreader.c61 xmlreader_prop_handler hnd; in xmlreader_register_prop_handler() local
64 hnd.read_char_func = read_char_func; in xmlreader_register_prop_handler()
65 hnd.read_int_func = read_int_func; in xmlreader_register_prop_handler()
66 hnd.type = rettype; in xmlreader_register_prop_handler()
80 if (hnd->read_char_func) { in xmlreader_property_reader()
83 if (hnd->read_int_func) { in xmlreader_property_reader()
93 switch (hnd->type) { in xmlreader_property_reader()
122 xmlreader_prop_handler *hnd = NULL; in xmlreader_get_property_ptr_ptr() local
139 if (hnd == NULL) { in xmlreader_get_property_ptr_ptr()
174 if (hnd != NULL) { in xmlreader_read_property()
[all …]
/PHP-7.4/ext/dba/
H A Dphp_dba.h53 struct dba_handler *hnd; member
88 char* (*info)(struct dba_handler *hnd, dba_info *);
115 char *dba_info_##x(dba_handler *hnd, dba_info *info)
H A Ddba.c425 if (info->hnd) { in dba_close()
426 info->hnd->close(info); in dba_close()
1001 info->hnd = hptr; in php_dba_open()
1059 if(info->hnd->exists(info, key_str, key_len) == SUCCESS) { in PHP_FUNCTION()
1077 if (!strcmp(info->hnd->name, "cdb")) { in PHP_FUNCTION()
1082 } else if (!strcmp(info->hnd->name, "inifile")) { in PHP_FUNCTION()
1156 fkey = info->hnd->firstkey(info, &len); in PHP_FUNCTION()
1183 nkey = info->hnd->nextkey(info, &len); in PHP_FUNCTION()
1204 if(info->hnd->delete(info, key_str, key_len) == SUCCESS) in PHP_FUNCTION()
1247 if (info->hnd->optimize(info) == SUCCESS) { in PHP_FUNCTION()
[all …]
H A Ddba_dbm.c195 return dba_info_gdbm(hnd, info); in DBA_INFO_FUNC()
H A Ddba_cdb.c329 if (!strcmp(hnd->name, "cdb")) { in DBA_INFO_FUNC()
/PHP-7.4/ext/zip/
H A Dphp_zip.c805 zip_prop_handler hnd; in php_zip_register_prop_handler() local
812 hnd.type = rettype; in php_zip_register_prop_handler()
833 if (hnd->read_int_func) { in php_zip_property_reader()
848 switch (hnd->type) { in php_zip_property_reader()
876 zip_prop_handler *hnd = NULL; in php_zip_get_property_ptr_ptr() local
894 if (hnd == NULL) { in php_zip_get_property_ptr_ptr()
911 zip_prop_handler *hnd = NULL; in php_zip_read_property() local
929 if (hnd != NULL) { in php_zip_read_property()
950 zip_prop_handler *hnd = NULL; in php_zip_has_property() local
969 if (hnd != NULL) { in php_zip_has_property()
[all …]
/PHP-7.4/ext/dom/
H A Dphp_dom.c302 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()
363 dom_prop_handler *hnd = NULL; in dom_write_property() local
368 if (hnd) { in dom_write_property()
369 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.4/ext/snmp/
H A Dsnmp.c1918 php_snmp_prop_handler *hnd; in php_snmp_read_property() local
1932 hnd = zend_hash_find_ptr(&php_snmp_properties, Z_STR_P(member)); in php_snmp_read_property()
1934 if (hnd && hnd->read_func) { in php_snmp_read_property()
1935 ret = hnd->read_func(obj, rv); in php_snmp_read_property()
1959 php_snmp_prop_handler *hnd; in php_snmp_write_property() local
1974 if (hnd && hnd->write_func) { in php_snmp_write_property()
1975 hnd->write_func(obj, value); in php_snmp_write_property()
1999 php_snmp_prop_handler *hnd; in php_snmp_has_property() local
2044 php_snmp_prop_handler *hnd; in php_snmp_get_properties() local
2052 ZEND_HASH_FOREACH_STR_KEY_PTR(&php_snmp_properties, key, hnd) { in php_snmp_get_properties()
[all …]
/PHP-7.4/ext/mysqli/
H A Dmysqli.c309 mysqli_prop_handler *hnd = NULL; in mysqli_read_property() local
323 hnd = zend_hash_find_ptr(obj->prop_handler, Z_STR_P(member)); in mysqli_read_property()
326 if (hnd) { in mysqli_read_property()
327 if (hnd->read_func(obj, rv, type == BP_VAR_IS) == SUCCESS || type != BP_VAR_IS) { in mysqli_read_property()
349 mysqli_prop_handler *hnd = NULL; in mysqli_write_property() local
363 hnd = zend_hash_find_ptr(obj->prop_handler, Z_STR_P(member)); in mysqli_write_property()
366 if (hnd) { in mysqli_write_property()
367 hnd->write_func(obj, value); in mysqli_write_property()

Completed in 94 milliseconds