Home
last modified time | relevance | path

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

/PHP-7.0/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;
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 D004.phpt29 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 D024.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"),…
71 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
/PHP-7.0/ext/xmlreader/
H A Dphp_xmlreader.c63 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.0/ext/dba/
H A Dphp_dba.h55 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 Ddba.c422 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 Ddba_dbm.c198 return dba_info_gdbm(hnd, info); in DBA_INFO_FUNC()
H A Ddba_cdb.c331 if (!strcmp(hnd->name, "cdb")) { in DBA_INFO_FUNC()
/PHP-7.0/ext/zip/
H A Dphp_zip.c782 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.0/ext/dom/
H A Dphp_dom.c305 dom_prop_handler hnd; in dom_register_prop_handler() local
335 dom_prop_handler *hnd = NULL; in dom_read_property() local
343 if (hnd) { in dom_read_property()
344 int ret = hnd->read_func(obj, rv); in dom_read_property()
365 dom_prop_handler *hnd = NULL; in dom_write_property() local
370 if (hnd) { in dom_write_property()
371 hnd->write_func(obj, value); in dom_write_property()
386 dom_prop_handler *hnd = NULL; in dom_property_exists() local
392 if (hnd) { in dom_property_exists()
397 } else if (hnd->read_func(obj, &tmp) == SUCCESS) { in dom_property_exists()
[all …]
/PHP-7.0/ext/snmp/
H A Dsnmp.c1960 php_snmp_prop_handler *hnd; in php_snmp_read_property() local
1971 hnd = zend_hash_find_ptr(&php_snmp_properties, Z_STR_P(member)); in php_snmp_read_property()
1973 if (hnd && hnd->read_func) { in php_snmp_read_property()
1974 ret = hnd->read_func(obj, rv); in php_snmp_read_property()
1999 php_snmp_prop_handler *hnd; in php_snmp_write_property() local
2009 hnd = zend_hash_find_ptr(&php_snmp_properties, Z_STR_P(member)); in php_snmp_write_property()
2011 if (hnd && hnd->write_func) { in php_snmp_write_property()
2012 hnd->write_func(obj, value); in php_snmp_write_property()
2035 php_snmp_prop_handler *hnd; in php_snmp_has_property() local
2081 php_snmp_prop_handler *hnd; in php_snmp_get_properties() local
[all …]
/PHP-7.0/ext/mysqli/
H A Dmysqli.c304 mysqli_prop_handler *hnd = NULL; in mysqli_read_property() local
315 hnd = zend_hash_find_ptr(obj->prop_handler, Z_STR_P(member)); in mysqli_read_property()
318 if (hnd) { in mysqli_read_property()
319 retval = hnd->read_func(obj, rv); in mysqli_read_property()
341 mysqli_prop_handler *hnd = NULL; in mysqli_write_property() local
352 hnd = zend_hash_find_ptr(obj->prop_handler, Z_STR_P(member)); in mysqli_write_property()
355 if (hnd) { in mysqli_write_property()
356 hnd->write_func(obj, value); in mysqli_write_property()

Completed in 92 milliseconds