Searched refs:new_entry (Results 1 - 20 of 20) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/flex/
H A 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
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/flex/
H A 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
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ext4/
H A Dblock_validity.c63 struct ext4_system_zone *new_entry = NULL, *entry; local
80 new_entry = rb_entry(new_node, struct ext4_system_zone,
86 if (!new_entry) {
87 new_entry = kmem_cache_alloc(ext4_system_zone_cachep,
89 if (!new_entry)
91 new_entry->start_blk = start_blk;
92 new_entry->count = count;
93 new_node = &new_entry->node;
103 if (can_merge(entry, new_entry)) {
104 new_entry
[all...]
H A Dmballoc.c4357 struct ext4_free_data *new_entry)
4372 new_node = &new_entry->node;
4373 block = new_entry->start_blk;
4406 if (can_merge(entry, new_entry)) {
4407 new_entry->start_blk = entry->start_blk;
4408 new_entry->count += entry->count;
4420 if (can_merge(new_entry, entry)) {
4421 new_entry->count += entry->count;
4431 list_add(&new_entry->list, &handle->h_transaction->t_private_list);
4580 struct ext4_free_data *new_entry; local
4356 ext4_mb_free_metadata(handle_t *handle, struct ext4_buddy *e4b, struct ext4_free_data *new_entry) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/passdb/
H A Dpdb_smbpasswd.c596 char *new_entry; local
602 if((new_entry = (char *)SMB_MALLOC( new_entry_length )) == NULL) {
608 slprintf(new_entry, new_entry_length - 1, "%s:%u:", newpwd->smb_name, (unsigned)newpwd->smb_userid);
610 p = new_entry+strlen(new_entry);
622 slprintf((char *)p, new_entry_length - 1 - (p - new_entry), "%s:LCT-%08X:\n",
626 return new_entry;
642 char *new_entry; local
687 if((new_entry = format_new_smbpasswd_entry(newpwd)) == NULL) {
694 new_entry_length = strlen(new_entry);
1128 char *new_entry; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Ddblist.c158 struct ext2_db_entry *new_entry; local
175 new_entry = dblist->list + ( (int) dblist->count++);
176 new_entry->blk = blk;
177 new_entry->ino = ino;
178 new_entry->blockcnt = blockcnt;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/util/
H A Dstrlist.c40 int strlist__add(struct strlist *self, const char *new_entry) argument
51 rc = strcmp(sn->s, new_entry);
61 sn = str_node__new(new_entry, self->dupstr);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/plugin_common/
H A Dtags.c318 FLAC__byte *new_entry; local
319 if(0 == (new_entry = (FLAC__byte*)safe_realloc_add_4op_(entry->entry, entry->length, /*+*/value_len, /*+*/separator_len, /*+*/1)))
321 memcpy(new_entry+entry->length, separator, separator_len);
323 memcpy(new_entry+entry->length, value, value_len);
325 new_entry[entry->length] = '\0';
326 entry->entry = new_entry;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/libsmb/
H A Dsmb_share_modes.c42 uint64_t ino, const struct smb_share_mode_entry *new_entry,
257 const struct smb_share_mode_entry *new_entry,
286 create_share_mode_entry(shares, new_entry);
325 create_share_mode_entry(shares, new_entry);
359 const struct smb_share_mode_entry *new_entry,
365 return smb_create_share_mode_entry_ex(db_ctx, dev, ino, new_entry,
474 const struct smb_share_mode_entry *new_entry)
503 create_share_mode_entry(share, new_entry);
254 smb_create_share_mode_entry_ex(struct smbdb_ctx *db_ctx, uint64_t dev, uint64_t ino, const struct smb_share_mode_entry *new_entry, const char *sharepath, const char *filename) argument
356 smb_create_share_mode_entry(struct smbdb_ctx *db_ctx, uint64_t dev, uint64_t ino, const struct smb_share_mode_entry *new_entry, const char *filename) argument
470 smb_change_share_mode_entry(struct smbdb_ctx *db_ctx, uint64_t dev, uint64_t ino, const struct smb_share_mode_entry *set_entry, const struct smb_share_mode_entry *new_entry) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/include/
H A Dsmb_share_modes.h101 const struct smb_share_mode_entry *new_entry);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/security/tomoyo/
H A Ddomain.c21 * @new_entry: Pointer to "struct tomoyo_acl_info".
22 * @size: Size of @new_entry in bytes.
31 int tomoyo_update_policy(struct tomoyo_acl_head *new_entry, const int size, argument
44 if (!check_duplicate(entry, new_entry))
51 entry = tomoyo_commit_ok(new_entry, size);
64 * @new_entry: Pointer to "struct tomoyo_acl_info".
65 * @size: Size of @new_entry in bytes.
75 int tomoyo_update_domain(struct tomoyo_acl_info *new_entry, const int size, argument
91 if (!check_duplicate(entry, new_entry))
94 entry->is_deleted = merge_duplicate(entry, new_entry,
[all...]
H A Dcommon.h867 int tomoyo_update_domain(struct tomoyo_acl_info *new_entry, const int size,
876 int tomoyo_update_policy(struct tomoyo_acl_head *new_entry, const int size,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/cifs/
H A Dreaddir.c305 char *new_entry; local
312 new_entry = old_entry + sizeof(FIND_FILE_STANDARD_INFO) +
315 new_entry = old_entry + le32_to_cpu(pDirInfo->NextEntryOffset);
316 cFYI(1, "new entry %p old entry %p", new_entry, old_entry);
317 /* validate that new_entry is not past end of SMB */
318 if (new_entry >= end_of_smb) {
320 new_entry, end_of_smb, old_entry);
323 (new_entry + sizeof(FIND_FILE_STANDARD_INFO) > end_of_smb))
325 (new_entry + sizeof(FILE_DIRECTORY_INFO) > end_of_smb))) {
327 new_entry, end_of_sm
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/pci/pcie/
H A Dportdrv_core.c38 * @new_entry: Index of the entry to add to the array
44 struct msix_entry *entries, int new_entry, int nr_entries)
49 if (entries[j].entry == new_entry)
52 entries[j].entry = new_entry;
43 pcie_port_msix_add_entry( struct msix_entry *entries, int new_entry, int nr_entries) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/blackfin/kernel/
H A Dsetup.c262 int new_entry; local
351 new_entry = 0; /* index for creating new memmap entries */
377 new_map[new_entry].size =
380 if (new_map[new_entry].size != 0)
381 if (++new_entry >= BFIN_MEMMAP_MAX)
385 new_map[new_entry].addr = change_point[chgidx]->addr;
386 new_map[new_entry].type = current_type;
392 new_nr = new_entry; /* retain count for new entries */
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/
H A Dnsp32.c1733 int new_entry; local
1745 * calculate new_entry from sack count and each sgt[].len
1749 for (new_entry = old_entry; new_entry < sg_num; new_entry++) {
1750 sentlen += (le32_to_cpu(sgt[new_entry].len) & ~SGTEND);
1757 if (new_entry == sg_num) {
1770 len = le32_to_cpu(sgt[new_entry].len);
1771 addr = le32_to_cpu(sgt[new_entry].addr);
1773 sgt[new_entry]
[all...]
H A Dhpsa.c579 int entry, struct hpsa_scsi_dev_t *new_entry,
587 h->dev[entry] = new_entry;
588 added[*nadded] = new_entry;
591 scsi_device_type(new_entry->devtype), hostno, new_entry->bus,
592 new_entry->target, new_entry->lun);
578 hpsa_scsi_replace_entry(struct ctlr_info *h, int hostno, int entry, struct hpsa_scsi_dev_t *new_entry, struct hpsa_scsi_dev_t *added[], int *nadded, struct hpsa_scsi_dev_t *removed[], int *nremoved) argument
H A Dpmcraid.c1588 u32 new_entry = 1; local
1652 new_entry = 0;
1657 if (new_entry) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/hostap/
H A Dhostap_hw.c2957 struct set_tim_data *new_entry; local
2964 new_entry = kzalloc(sizeof(*new_entry), GFP_ATOMIC);
2965 if (new_entry == NULL) {
2970 new_entry->aid = aid;
2971 new_entry->set = set;
2982 kfree(new_entry);
2983 new_entry = NULL;
2987 if (new_entry)
2988 list_add_tail(&new_entry
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/gtk/
H A Dtr-prefs.c199 new_entry( const char * key, function
538 e = new_entry( TR_PREFS_KEY_BLOCKLIST_URL, core );
834 w = new_entry( TR_PREFS_KEY_RPC_USERNAME, core );
841 w = new_entry( TR_PREFS_KEY_RPC_PASSWORD, core );

Completed in 474 milliseconds