Searched defs:userdata (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_5/ext/gd/ |
| H A D | gdcache.h | 21 * - a function to test if a cached userdata matches some keydata 22 * - a function to provide a new userdata struct to the cache 24 * - a function to release a userdata struct when it is 53 typedef int (*gdCacheTestFn_t)(void *userdata, void *keydata); 55 typedef void (*gdCacheReleaseFn_t)(void *userdata); 61 void *userdata; member in struct:gdCache_element_s
|
| H A D | gdcache.c | 21 * - a function to test if a cached userdata matches some keydata 22 * - a function to provide a new userdata struct to the cache 24 * - a function to release a userdata struct when it is 82 (*(head->gdCacheRelease))(elem->userdata); 95 void *userdata; local 104 if ((*(head->gdCacheTest))(elem->userdata, keydata)) { 111 return elem->userdata; 118 userdata = (*(head->gdCacheFetch))(&(head->error), keydata); 119 if (! userdata) { 130 (*(head->gdCacheRelease))(elem->userdata); [all...] |
| /PHP_5_5/ext/gd/libgd/ |
| H A D | gdcache.c | 30 * - a function to test if a cached userdata matches some keydata 31 * - a function to provide a new userdata struct to the cache 33 * - a function to release a userdata struct when it is 82 (*(head->gdCacheRelease)) (elem->userdata); 95 void *userdata; local 100 if ((*(head->gdCacheTest)) (elem->userdata, keydata)) 109 return elem->userdata; 116 userdata = (*(head->gdCacheFetch)) (&(head->error), keydata); 117 if (!userdata) 131 (*(head->gdCacheRelease)) (elem->userdata); [all...] |
| H A D | gdcache.h | 21 * - a function to test if a cached userdata matches some keydata 22 * - a function to provide a new userdata struct to the cache 24 * - a function to release a userdata struct when it is 52 typedef int (*gdCacheTestFn_t)(void *userdata, void *keydata); 54 typedef void (*gdCacheReleaseFn_t)(void *userdata); 60 void *userdata; member in struct:gdCache_element_s
|
| /PHP_5_5/ext/mysqlnd/ |
| H A D | mysqlnd_structs.h | 152 int (*local_infile_init)(void **ptr, char *filename, void **userdata TSRMLS_DC); 157 void *userdata; member in struct:st_mysqlnd_infile
|
| /PHP_5_5/ext/standard/ |
| H A D | array.c | 1041 static int php_array_walk(HashTable *target_hash, zval *userdata, int recursive TSRMLS_DC) /* {{{ */ argument 1049 args[2] = &userdata; 1050 if (userdata) { 1051 Z_ADDREF_P(userdata); 1055 BG(array_walk_fci).param_count = userdata ? 3 : 2; 1071 if (userdata) { 1072 zval_ptr_dtor(&userdata); 1082 php_array_walk(thash, userdata, recursive TSRMLS_CC); 1114 if (userdata) { 1115 zval_ptr_dtor(&userdata); 1126 zval *userdata = NULL; local 1151 zval *userdata = NULL; local [all...] |
Completed in 11 milliseconds