Home
last modified time | relevance | path

Searched refs:new_entry (Results 1 – 6 of 6) sorted by relevance

/external/webkit/WebKitTools/android/flex-2.5.4a/
Dsym.c60 register struct hash_entry *new_entry; local
74 new_entry = (struct hash_entry *)
77 if ( new_entry == NULL )
82 new_entry->next = successor;
83 successor->prev = new_entry;
86 new_entry->next = NULL;
88 new_entry->prev = NULL;
89 new_entry->name = sym;
90 new_entry->str_val = str_def;
91 new_entry->int_val = int_def;
[all …]
/external/oprofile/libutil/
Dop_list.h46 static __inline__ void __list_add(struct list_head * new_entry, in __list_add() argument
50 next->prev = new_entry; in __list_add()
51 new_entry->next = next; in __list_add()
52 new_entry->prev = prev; in __list_add()
53 prev->next = new_entry; in __list_add()
64 static __inline__ void list_add(struct list_head * new_entry, struct list_head * head) in list_add() argument
66 __list_add(new_entry, head, head->next); in list_add()
77 static __inline__ void list_add_tail(struct list_head * new_entry, struct list_head * head) in list_add_tail() argument
79 __list_add(new_entry, head->prev, head); in list_add_tail()
/external/qemu/
Dreadline.c246 char *hist_entry, *new_entry; in term_hist_add() local
251 new_entry = NULL; in term_hist_add()
267 new_entry = hist_entry; in term_hist_add()
287 if (new_entry == NULL) in term_hist_add()
288 new_entry = strdup(cmdline); in term_hist_add()
289 term_history[idx] = new_entry; in term_hist_add()
/external/bison/lib/
Dhash.c858 struct hash_entry *new_entry = allocate_entry (new_table); in hash_rehash() local
860 if (new_entry == NULL) in hash_rehash()
863 new_entry->data = data; in hash_rehash()
864 new_entry->next = new_bucket->next; in hash_rehash()
865 new_bucket->next = new_entry; in hash_rehash()
925 struct hash_entry *new_entry = allocate_entry (table); in hash_insert() local
927 if (new_entry == NULL) in hash_insert()
932 new_entry->data = (void *) entry; in hash_insert()
933 new_entry->next = bucket->next; in hash_insert()
934 bucket->next = new_entry; in hash_insert()
/external/e2fsprogs/lib/ext2fs/
Ddblist.c159 struct ext2_db_entry *new_entry; in ext2fs_add_dir_block() local
176 new_entry = dblist->list + ( (int) dblist->count++); in ext2fs_add_dir_block()
177 new_entry->blk = blk; in ext2fs_add_dir_block()
178 new_entry->ino = ino; in ext2fs_add_dir_block()
179 new_entry->blockcnt = blockcnt; in ext2fs_add_dir_block()
/external/wpa_supplicant/
Dpmksa_cache.c325 struct rsn_pmksa_cache_entry *new_entry; in pmksa_cache_clone_entry() local
327 new_entry = pmksa_cache_add(pmksa, old_entry->pmk, old_entry->pmk_len, in pmksa_cache_clone_entry()
329 if (new_entry == NULL) in pmksa_cache_clone_entry()
333 new_entry->expiration = old_entry->expiration; in pmksa_cache_clone_entry()
334 new_entry->opportunistic = 1; in pmksa_cache_clone_entry()
336 return new_entry; in pmksa_cache_clone_entry()