Home
last modified time | relevance | path

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

/php-src/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 session_set_save_handler($hnd);
62 session_decode($hnd->data);
72 session_set_save_handler($hnd);
85 session_set_save_handler($hnd);
H A Dbasic_set_save_handler_test.phpt30 return $GLOBALS["hnd"]->data;
36 $GLOBALS["hnd"]->data = $val;
49 $hnd = new handler;
/php-src/ext/xmlreader/
H A Dphp_xmlreader.c78 if (hnd->read_char_func) { in xmlreader_property_reader()
81 if (hnd->read_int_func) { in xmlreader_property_reader()
82 retint = hnd->read_int_func(obj->ptr); in xmlreader_property_reader()
91 switch (hnd->type) { in xmlreader_property_reader()
118 if (hnd == NULL) { in xmlreader_get_property_ptr_ptr()
134 if (hnd != NULL && cache_slot) { in xmlreader_get_prop_handler()
137 return hnd; in xmlreader_get_prop_handler()
146 if (hnd != NULL) { in xmlreader_has_property()
182 if (hnd != NULL) { in xmlreader_read_property()
201 if (hnd != NULL) { in xmlreader_write_property()
[all …]
/php-src/ext/dba/
H A Dphp_dba.h51 const struct dba_handler *hnd; member
94 char* (*info)(const struct dba_handler *hnd, dba_info *);
121 char *dba_info_##x(const dba_handler *hnd, dba_info *info)
H A Ddba.c246 if (info->hnd) { in dba_close_info()
247 info->hnd->close(info); in dba_close_info()
248 info->hnd = NULL; in dba_close_info()
932 connection->info->hnd = hptr; in php_dba_open()
1008 RETVAL_BOOL(info->hnd->exists(info, key_str) == SUCCESS); in PHP_FUNCTION()
1055 if (!strcmp(info->hnd->name, "cdb")) { in PHP_FUNCTION()
1061 } else if (!strcmp(info->hnd->name, "inifile")) { in PHP_FUNCTION()
1129 zend_string *fkey = info->hnd->firstkey(info); in PHP_FUNCTION()
1152 zend_string *nkey = info->hnd->nextkey(info); in PHP_FUNCTION()
1222 if (info->hnd->optimize(info) == SUCCESS) { in PHP_FUNCTION()
[all …]
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-src/ext/zip/
H A Dphp_zip.c843 zip_prop_handler hnd; in php_zip_register_prop_handler() local
848 hnd.type = rettype; in php_zip_register_prop_handler()
867 switch (hnd->type) { in php_zip_property_reader()
890 zip_prop_handler *hnd = NULL; in php_zip_get_property_ptr_ptr() local
898 if (hnd == NULL) { in php_zip_get_property_ptr_ptr()
910 zip_prop_handler *hnd = NULL; in php_zip_write_property() local
918 if (hnd != NULL) { in php_zip_write_property()
930 zip_prop_handler *hnd = NULL; in php_zip_read_property() local
938 if (hnd != NULL) { in php_zip_read_property()
964 if (hnd != NULL) { in php_zip_has_property()
[all …]
/php-src/ext/mysqli/
H A Dmysqli.c245 mysqli_prop_handler *hnd = zend_hash_find_ptr(obj->prop_handler, name); in mysqli_read_property() local
246 if (hnd) { in mysqli_read_property()
247 if (hnd->read_func(obj, rv, type == BP_VAR_IS) == SUCCESS) { in mysqli_read_property()
264 const mysqli_prop_handler *hnd = zend_hash_find_ptr(obj->prop_handler, name); in mysqli_write_property() local
265 if (hnd) { in mysqli_write_property()
266 if (!hnd->write_func) { in mysqli_write_property()
281 hnd->write_func(obj, &tmp); in mysqli_write_property()
284 hnd->write_func(obj, value); in mysqli_write_property()
/php-src/ext/snmp/
H A Dsnmp.c1730 php_snmp_prop_handler *hnd; in php_snmp_read_property() local
1736 if (hnd && hnd->read_func) { in php_snmp_read_property()
1737 ret = hnd->read_func(obj, rv); in php_snmp_read_property()
1757 if (hnd) { in php_snmp_write_property()
1758 if (!hnd->write_func) { in php_snmp_write_property()
1772 hnd->write_func(obj, &tmp); in php_snmp_write_property()
1775 hnd->write_func(obj, value); in php_snmp_write_property()
1789 php_snmp_prop_handler *hnd; in php_snmp_has_property() local
1834 php_snmp_prop_handler *hnd; in php_snmp_get_properties() local
1843 if (!hnd->read_func || hnd->read_func(obj, &rv) != SUCCESS) { in php_snmp_get_properties()
[all …]
/php-src/ext/dom/
H A Dphp_dom.c365 const dom_prop_handler *hnd = NULL; in dom_get_prop_handler() local
369 hnd = *(cache_slot + 1); in dom_get_prop_handler()
371 if (!hnd) { in dom_get_prop_handler()
375 *(cache_slot + 1) = (void *) hnd; in dom_get_prop_handler()
380 return hnd; in dom_get_prop_handler()
390 if (hnd) { in dom_read_property()
391 int ret = hnd->read_func(obj, rv); in dom_read_property()
410 if (hnd) { in dom_write_property()
411 if (UNEXPECTED(!hnd->write_func)) { in dom_write_property()
435 hnd->write_func(obj, &tmp); in dom_write_property()
[all …]

Completed in 249 milliseconds