Home
last modified time | relevance | path

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

/PHP-5.5/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 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"),…
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"),…
/PHP-5.5/ext/xmlreader/
H A Dphp_xmlreader.c62 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()
78 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()
93 switch (hnd->type) { in xmlreader_property_reader()
121 xmlreader_prop_handler *hnd; in xmlreader_get_property_ptr_ptr() local
155 xmlreader_prop_handler *hnd; in xmlreader_read_property() local
[all …]
/PHP-5.5/ext/dba/
H A Dphp_dba.h52 struct dba_handler *hnd; member
87 char* (*info)(struct dba_handler *hnd, dba_info * TSRMLS_DC);
114 char *dba_info_##x(dba_handler *hnd, dba_info *info TSRMLS_DC)
H A Ddba.c413 if (info->hnd) { in dba_close()
414 info->hnd->close(info TSRMLS_CC); in dba_close()
932 info->hnd = hptr; in php_dba_open()
994 if(info->hnd->exists(info, key_str, key_len TSRMLS_CC) == SUCCESS) { in PHP_FUNCTION()
1012 if (!strcmp(info->hnd->name, "cdb")) { in PHP_FUNCTION()
1017 } else if (!strcmp(info->hnd->name, "inifile")) { in PHP_FUNCTION()
1089 fkey = info->hnd->firstkey(info, &len TSRMLS_CC); in PHP_FUNCTION()
1113 nkey = info->hnd->nextkey(info, &len TSRMLS_CC); in PHP_FUNCTION()
1131 if(info->hnd->delete(info, key_str, key_len TSRMLS_CC) == SUCCESS) in PHP_FUNCTION()
1174 if (info->hnd->optimize(info TSRMLS_CC) == SUCCESS) { in PHP_FUNCTION()
[all …]
H A Ddba_dbm.c198 return dba_info_gdbm(hnd, info TSRMLS_CC); in DBA_INFO_FUNC()
H A Ddba_cdb.c331 if (!strcmp(hnd->name, "cdb")) { in DBA_INFO_FUNC()
/PHP-5.5/ext/zip/
H A Dphp_zip.c811 zip_prop_handler hnd; in php_zip_register_prop_handler() local
813 hnd.read_const_char_func = read_char_func; in php_zip_register_prop_handler()
814 hnd.read_int_func = read_int_func; in php_zip_register_prop_handler()
816 hnd.type = rettype; in php_zip_register_prop_handler()
828 if (hnd->read_const_char_func) { in php_zip_property_reader()
831 if (hnd->read_int_func) { in php_zip_property_reader()
850 switch (hnd->type) { in php_zip_property_reader()
878 zip_prop_handler *hnd; in php_zip_get_property_ptr_ptr() local
919 zip_prop_handler *hnd; in php_zip_read_property() local
966 zip_prop_handler *hnd; in php_zip_has_property() local
[all …]
/PHP-5.5/ext/dom/
H A Dphp_dom.c298 dom_prop_handler hnd; in dom_register_prop_handler() local
300 hnd.read_func = read_func ? read_func : dom_read_na; in dom_register_prop_handler()
301 hnd.write_func = write_func ? write_func : dom_write_na; in dom_register_prop_handler()
302 zend_hash_add(prop_handler, name, strlen(name)+1, &hnd, sizeof(dom_prop_handler), NULL); in dom_register_prop_handler()
311 dom_prop_handler *hnd; in dom_get_property_ptr_ptr() local
345 dom_prop_handler *hnd; in dom_read_property() local
365 ret = hnd->read_func(obj, &retval TSRMLS_CC); in dom_read_property()
390 dom_prop_handler *hnd; in dom_write_property() local
408 hnd->write_func(obj, value TSRMLS_CC); in dom_write_property()
425 dom_prop_handler *hnd; in dom_property_exists() local
[all …]
/PHP-5.5/ext/snmp/
H A Dsnmp.c1983 php_snmp_prop_handler *hnd; in php_snmp_read_property() local
1996 …t = zend_hash_find(&php_snmp_properties, Z_STRVAL_P(member), Z_STRLEN_P(member)+1, (void **) &hnd); in php_snmp_read_property()
1998 if (ret == SUCCESS && hnd->read_func) { in php_snmp_read_property()
1999 ret = hnd->read_func(obj, &retval TSRMLS_CC); in php_snmp_read_property()
2024 php_snmp_prop_handler *hnd; in php_snmp_write_property() local
2039 if (ret == SUCCESS && hnd->write_func) { in php_snmp_write_property()
2040 hnd->write_func(obj, value TSRMLS_CC); in php_snmp_write_property()
2060 php_snmp_prop_handler *hnd; in php_snmp_has_property() local
2111 php_snmp_prop_handler *hnd; in php_snmp_get_properties() local
2124 while (zend_hash_get_current_data_ex(&php_snmp_properties, (void**)&hnd, &pos) == SUCCESS) { in php_snmp_get_properties()
[all …]
/PHP-5.5/ext/mysqli/
H A Dmysqli.c326 mysqli_prop_handler *hnd; in mysqli_read_property() local
340 ret = zend_hash_find(obj->prop_handler, Z_STRVAL_P(member), Z_STRLEN_P(member)+1, (void **) &hnd); in mysqli_read_property()
344 ret = hnd->read_func(obj, &retval TSRMLS_CC); in mysqli_read_property()
368 mysqli_prop_handler *hnd; in mysqli_write_property() local
382 …ash_find((HashTable *)obj->prop_handler, Z_STRVAL_P(member), Z_STRLEN_P(member)+1, (void **) &hnd); in mysqli_write_property()
385 hnd->write_func(obj, value TSRMLS_CC); in mysqli_write_property()

Completed in 85 milliseconds