| /PHP_5_4/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 705 ** over the list of options that were defined at compile time by 1179 ** A [SQLITE_FCNTL_LOCKSTATE | list of opcodes] less than 100 is available. 1333 ** Registered sqlite3_vfs objects are kept on a linked list formed by 1335 ** and [sqlite3_vfs_unregister()] interfaces manage this list 1337 ** searches the list. Neither the application code nor the VFS 2506 ** string from the argument list. But %q also doubles every '\'' character. 2544 ** argument list is a NULL pointer, %Q substitutes the text "NULL" (without 3605 ** there may be gaps in the list.)^ 5242 ** on the list of automatic extensions is a harmless no-op. ^No entry point 6034 #define SQLITE_MUTEX_STATIC_LRU 6 /* lru page list */ 15502 } list; member in union:Mem3Block::__anon412 [all...] |
| /PHP_5_4/ext/xmlrpc/libxmlrpc/ |
| H A D | queue.c | 38 * itself to have a list of cursors. 61 * To create a double list: 71 * To create a sorted list: 107 static void QuickSort(void *list[], int low, int high, 715 static void QuickSort(void *list[], int low, int high, argument 725 key = list[ low ]; 729 while(Comp(list[i], key) < 0) 733 while(Comp(list[j], key) > 0) 737 temp = list[i]; 738 list[ [all...] |
| H A D | xmlrpc_introspection.c | 77 /* iterates through a list of structs and finds the one with key "name" matching 80 static inline XMLRPC_VALUE find_named_value(XMLRPC_VALUE list, const char* needle) { argument 81 XMLRPC_VALUE xIter = XMLRPC_VectorRewind(list); 87 xIter = XMLRPC_VectorNext(list);
|
| /PHP_5_4/scripts/dev/generate-phpt/src/testcase/ |
| H A D | gtErrorTestCaseFunction.php | 46 $list = $this->subject->getExtraArgumentList(); variable 48 $this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );"; 50 $list = $this->subject->getShortArgumentList(); variable 52 $this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );";
|
| H A D | gtErrorTestCaseMethod.php | 48 // Construct the argument list to pass to the method being tested 49 $list = $this->subject->getExtraArgumentList(); variable 51 $this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );"; 53 $list = $this->subject->getShortArgumentList(); variable 55 $this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );";
|
| H A D | gtVariationTestCaseFunction.php | 53 // Construct the argument list to pass to the function being tested 56 $list = implode(", ", $argumentList); variable 59 $this->testCase[] = " var_dump(".$this->subject->getName()."( ".$list." ) );";
|
| H A D | gtVariationTestCaseMethod.php | 55 // Construct the argument list to pass to the method being tested 58 $list = implode(", ", $argumentList); variable 61 $this->testCase[] = " var_dump(\$class->".$this->subject->getName()."( ".$list." ) );";
|
| /PHP_5_4/ext/intl/locale/ |
| H A D | locale_methods.c | 107 /* {{{ return the offset of 'key' in the array 'list'. 109 static int16_t findOffset(const char* const* list, const char* key) argument 111 const char* const* anchor = list; 112 while (*list != NULL) { 113 if (strcmp(key, *list) == 0) { 114 return (int16_t)(list - anchor); 116 list++; 1124 * gets an array containing the list of variants, or null 1127 * gets an array containing the list of variants, or null 1590 INTL_CHECK_STATUS(status, "locale_accept_from_http: failed to retrieve locale list"); [all...] |
| /PHP_5_4/Zend/ |
| H A D | zend_multibyte.c | 43 static const zend_encoding *dummy_encoding_detector(const unsigned char *string, size_t length, const zend_encoding **list, size_t list_size TSRMLS_DC) argument 143 ZEND_API const zend_encoding *zend_multibyte_encoding_detector(const unsigned char *string, size_t length, const zend_encoding **list, size_t list_size TSRMLS_DC) argument 145 return multibyte_functions.encoding_detector(string, length, list, list_size TSRMLS_CC); 185 const zend_encoding **list = 0; local 193 if (FAILURE == zend_multibyte_parse_encoding_list(new_value, new_value_length, &list, &size, 1 TSRMLS_CC)) { 198 pefree(list, 1); 202 if (FAILURE == zend_multibyte_set_script_encoding(list, size TSRMLS_CC)) {
|
| H A D | zend_vm_gen.php | 264 $list = array(); // list of opcode handlers and helpers in original order variable 704 global $list, $opcodes, $helpers, $op_types; 715 foreach ($list as $lineno => $dsc) { 743 foreach ($list as $lineno => $dsc) { 1048 $op_types, $list, $opcodes, $helpers, $params, $opnames; 1105 $list[$lineno] = array("handler"=>$handler); 1122 $list[$lineno] = array("helper"=>$helper); 1144 $list[$lineno] = array("helper"=>$helper); 1337 list( [all...] |
| H A D | zend_compile.c | 1477 /* This should the end of a list() construct 3362 /* expects interface to be contained in ce's interface list already */ 3932 "The method %s is to be used from %s, but %s is also on the exclude list", 5709 void** list = emalloc(sizeof(void*) * 2); local 5711 list[0] = item; 5712 list[1] = NULL; 5714 *(void**)result = list; 5720 void** list = *(void**)result; local 5723 if (list) { 5724 while (list[ [all...] |
| /PHP_5_4/ext/exif/ |
| H A D | exif.c | 1365 union _image_info_value *list; member in union:_image_info_value 1379 image_info_data *list; member in struct:__anon68 1460 Return list of sectionnames specified by sectionlist. Return value must be freed 1499 file_section *list; member in struct:__anon70 1518 xp_field_type *list; member in struct:__anon73 1613 tmp = safe_erealloc(ImageInfo->file.list, (count+1), sizeof(file_section), 0); 1614 ImageInfo->file.list = tmp; 1615 ImageInfo->file.list[count].type = 0xFFFF; 1616 ImageInfo->file.list[count].data = NULL; 1617 ImageInfo->file.list[coun 1679 image_info_data *list; local 1813 image_info_data *list; local 1835 image_info_data *list; local 1876 image_info_data *list; local [all...] |
| /PHP_5_4/ext/mbstring/ |
| H A D | mbstring.c | 104 static void php_mb_gpc_get_detect_order(const zend_encoding ***list, size_t *list_size TSRMLS_DC); 113 const enum mbfl_no_encoding *list; member in struct:_php_mb_nls_ident_list 661 * Even if any illegal encoding is detected the result may contain a list 670 const mbfl_encoding **entry, **list; local 672 list = NULL; 701 /* make list */ 702 list = (const mbfl_encoding **)pecalloc(size, sizeof(mbfl_encoding*), persistent); 703 if (list != NULL) { 704 entry = list; 748 *return_list = list; 789 const mbfl_encoding **list, **entry; local 885 php_mb_zend_encoding_detector(const unsigned char *arg_string, size_t arg_length, const zend_encoding **list, size_t list_size TSRMLS_DC) argument 1204 const mbfl_encoding **list; local 1232 const mbfl_encoding **list; local 1774 char *list, *temp; local 1910 const mbfl_encoding **list = NULL; local 2954 const mbfl_encoding **list; local 3191 const mbfl_encoding **elist, **list; local 4732 php_mb_gpc_get_detect_order(const zend_encoding ***list, size_t *list_size TSRMLS_DC) argument [all...] |
| /PHP_5_4/ext/odbc/ |
| H A D | birdstep.c | 162 #define PHP_GET_BIRDSTEP_RES_IDX(id) if (!(res = birdstep_find_result(list, id))) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Birdstep: Not result index (%ld)", id); RETURN_FALSE; } 163 #define PHP_BIRDSTEP_CHK_LNK(id) if (!(conn = birdstep_find_conn(list, id))) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Birdstep: Not connection index (%ld)", id); RETURN_FALSE; } 227 static int birdstep_add_conn(HashTable *list,VConn *conn,HDBC hdbc TSRMLS_DC) argument 238 static VConn * birdstep_find_conn(HashTable *list,int ind) argument 250 static void birdstep_del_conn(HashTable *list,int ind) argument 255 static int birdstep_add_result(HashTable *list,Vresult *res,VConn *conn) argument 266 static Vresult * birdstep_find_result(HashTable *list,int ind) argument 278 static void birdstep_del_result(HashTable *list,int ind) argument 317 ind = birdstep_add_conn(list,new,hdbc TSRMLS_CC); 338 birdstep_del_conn(list, i [all...] |
| /PHP_5_4/ext/simplexml/ |
| H A D | simplexml.c | 988 static inline char * sxe_xmlNodeListGetString(xmlDocPtr doc, xmlNodePtr list, int inLine) /* {{{ */ argument 990 xmlChar *tmp = xmlNodeListGetString(doc, list, inLine);
|
| /PHP_5_4/ext/soap/ |
| H A D | php_encoding.c | 2125 soap_error0(E_ERROR, "Encoding: '*' may only be first arraySize value in list"); 2156 soap_error0(E_ERROR, "Encoding: '*' may only be first arraySize value in list"); 3117 smart_str list = {0}; local 3124 if (list.len != 0) { 3125 smart_str_appendc(&list, ' '); 3127 smart_str_appends(&list, (char*)dummy->children->content); 3135 smart_str_0(&list); 3136 xmlNodeSetContentLen(ret, BAD_CAST(list.c), list.len); 3137 smart_str_free(&list); 3141 smart_str list = {0}; local [all...] |
| /PHP_5_4/ext/spl/ |
| H A D | php_spl.c | 801 int spl_build_class_list_string(zval **entry, char **list TSRMLS_DC) /* {{{ */ 805 spprintf(&res, 0, "%s, %s", *list, Z_STRVAL_PP(entry)); 806 efree(*list); 807 *list = res; 815 zval list; local 821 INIT_PZVAL(&list); 822 array_init(&list); 823 SPL_LIST_CLASSES(&list, 0, 1, ZEND_ACC_INTERFACE) 825 zend_hash_apply_with_argument(Z_ARRVAL_P(&list), (apply_func_arg_t)spl_build_class_list_string, &strg TSRMLS_CC); 826 zval_dtor(&list); [all...] |
| H A D | spl_functions.c | 80 void spl_add_class_name(zval *list, zend_class_entry * pce, int allow, int ce_flags TSRMLS_DC) argument 86 if (zend_hash_find(Z_ARRVAL_P(list), pce->name, len+1, (void*)&tmp) == FAILURE) { 89 zend_hash_add(Z_ARRVAL_P(list), pce->name, len+1, &tmp, sizeof(zval *), NULL); 96 void spl_add_interfaces(zval *list, zend_class_entry * pce, int allow, int ce_flags TSRMLS_DC) argument 101 spl_add_class_name(list, pce->interfaces[num_interfaces], allow, ce_flags TSRMLS_CC); 107 void spl_add_traits(zval *list, zend_class_entry * pce, int allow, int ce_flags TSRMLS_DC) argument 112 spl_add_class_name(list, pce->traits[num_traits], allow, ce_flags TSRMLS_CC); 119 int spl_add_classes(zend_class_entry *pce, zval *list, int sub, int allow, int ce_flags TSRMLS_DC) argument 124 spl_add_class_name(list, pce, allow, ce_flags TSRMLS_CC); 126 spl_add_interfaces(list, pc [all...] |
| /PHP_5_4/ext/standard/ |
| H A D | array.c | 1845 PHPAPI HashTable* php_splice(HashTable *in_hash, int offset, int length, zval ***list, int list_count, HashTable **removed) /* {{{ */ argument 1910 if (list != NULL) { 1913 entry = *list[i]; 2994 Bucket ***lists, **list, ***ptrs, *p; local 3093 /* for each argument, create and sort list with pointers to the hash buckets */ 3113 list = (Bucket **) pemalloc((hash->nNumOfElements + 1) * sizeof(Bucket *), hash->persistent); 3114 if (!list) { 3122 lists[i] = list; 3123 ptrs[i] = list; 3125 *list 3412 Bucket ***lists, **list, ***ptrs, *p; local [all...] |
| /PHP_5_4/ext/xmlrpc/ |
| H A D | xmlrpc-epi-php.c | 319 static int add_long(zval* list, char* id, int num) { 320 if(id) return add_assoc_long(list, id, num); 321 else return add_next_index_long(list, num); 324 static int add_double(zval* list, char* id, double num) { 325 if(id) return add_assoc_double(list, id, num); 326 else return add_next_index_double(list, num); 329 static int add_string(zval* list, char* id, char* string, int duplicate) { 330 if(id) return add_assoc_string(list, id, string, duplicate); 331 else return add_next_index_string(list, string, duplicate); 334 static int add_stringl(zval* list, cha 341 add_zval(zval* list, const char* id, zval** val) argument [all...] |
| /PHP_5_4/sapi/cgi/ |
| H A D | fastcgi.c | 175 fcgi_hash_bucket *list; member in struct:_fcgi_hash 183 h->list = NULL; 215 h->list = NULL; 281 p->list_next = h->list; 282 h->list = p; 329 fcgi_hash_bucket *p = h->list; 990 q = req->env.list;
|
| /PHP_5_4/main/streams/ |
| H A D | streams.c | 129 * regular list; allowing the same resource in several entries in the 130 * regular list causes trouble (see bug #54623) */ 143 if (index == -1) { /* not found in regular list */ 162 zend_llist *list = NULL; local 167 sizeof wrapper, (void**)&list); 168 return list; 262 zend_llist *list = NULL; local 269 sizeof wrapper, (void**)&list); 272 if (!list) { 276 sizeof wrapper, &new_list, sizeof new_list, (void**)&list); [all...] |