/PHP-5.3/ext/session/tests/ |
H A D | 025.phpt | 31 return $GLOBALS["hnd"]->data; 37 $GLOBALS["hnd"]->data = $val; 57 $hnd = new handler; 64 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),… 78 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),… 94 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
|
H A D | 005.phpt | 31 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"),… 69 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),… 81 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
|
H A D | 024.phpt | 29 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"),… 70 …save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"),…
|
H A D | 004.phpt | 29 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.3/ext/dba/ |
H A D | dba.c | 394 if (info->hnd) { in dba_close() 395 info->hnd->close(info TSRMLS_CC); in dba_close() 922 info->hnd = hptr; in php_dba_open() 984 if(info->hnd->exists(info, key_str, key_len TSRMLS_CC) == SUCCESS) { in PHP_FUNCTION() 1002 if (!strcmp(info->hnd->name, "cdb")) { in PHP_FUNCTION() 1007 } else if (!strcmp(info->hnd->name, "inifile")) { in PHP_FUNCTION() 1082 fkey = info->hnd->firstkey(info, &len TSRMLS_CC); in PHP_FUNCTION() 1106 nkey = info->hnd->nextkey(info, &len TSRMLS_CC); in PHP_FUNCTION() 1124 if(info->hnd->delete(info, key_str, key_len TSRMLS_CC) == SUCCESS) in PHP_FUNCTION() 1167 if (info->hnd->optimize(info TSRMLS_CC) == SUCCESS) { in PHP_FUNCTION() [all …]
|
H A D | php_dba.h | 52 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 D | dba_dbm.c | 198 return dba_info_gdbm(hnd, info TSRMLS_CC); in DBA_INFO_FUNC()
|
H A D | dba_cdb.c | 331 if (!strcmp(hnd->name, "cdb")) { in DBA_INFO_FUNC()
|
/PHP-5.3/ext/xmlreader/ |
H A D | php_xmlreader.c | 61 xmlreader_prop_handler hnd; in xmlreader_register_prop_handler() local 63 hnd.read_char_func = read_char_func; in xmlreader_register_prop_handler() 64 hnd.read_int_func = read_int_func; in xmlreader_register_prop_handler() 65 hnd.type = rettype; in xmlreader_register_prop_handler() 77 if (hnd->read_char_func) { in xmlreader_property_reader() 80 if (hnd->read_int_func) { in xmlreader_property_reader() 81 retint = hnd->read_int_func(obj->ptr); in xmlreader_property_reader() 92 switch (hnd->type) { in xmlreader_property_reader() 120 xmlreader_prop_handler *hnd; in xmlreader_get_property_ptr_ptr() local 154 xmlreader_prop_handler *hnd; in xmlreader_read_property() local [all …]
|
/PHP-5.3/ext/zip/ |
H A D | php_zip.c | 820 zip_prop_handler hnd; in php_zip_register_prop_handler() local 822 hnd.read_const_char_func = read_char_func; in php_zip_register_prop_handler() 823 hnd.read_int_func = read_int_func; in php_zip_register_prop_handler() 825 hnd.type = rettype; in php_zip_register_prop_handler() 837 if (hnd->read_const_char_func) { in php_zip_property_reader() 840 if (hnd->read_int_func) { in php_zip_property_reader() 859 switch (hnd->type) { in php_zip_property_reader() 887 zip_prop_handler *hnd; in php_zip_get_property_ptr_ptr() local 923 zip_prop_handler *hnd; in php_zip_read_property() local 965 zip_prop_handler *hnd; in php_zip_has_property() local [all …]
|
/PHP-5.3/ext/dom/ |
H A D | php_dom.c | 298 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.3/ext/mysqli/ |
H A D | mysqli.c | 321 mysqli_prop_handler *hnd; in mysqli_read_property() local 335 ret = zend_hash_find(obj->prop_handler, Z_STRVAL_P(member), Z_STRLEN_P(member)+1, (void **) &hnd); in mysqli_read_property() 339 ret = hnd->read_func(obj, &retval TSRMLS_CC); in mysqli_read_property() 363 mysqli_prop_handler *hnd; in mysqli_write_property() local 377 …ash_find((HashTable *)obj->prop_handler, Z_STRVAL_P(member), Z_STRLEN_P(member)+1, (void **) &hnd); in mysqli_write_property() 380 hnd->write_func(obj, value TSRMLS_CC); in mysqli_write_property()
|