Home
last modified time | relevance | path

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

/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DDirectoryCache.cpp55 NameCacheEntry* new_entry; in DirectoryCacheSnapshot() local
57 new_entry = new NameCacheEntry(*entry); in DirectoryCacheSnapshot()
58 if (new_entry == NULL) in DirectoryCacheSnapshot()
61 fEntries.Add(new_entry); in DirectoryCacheSnapshot()
/haiku/src/system/libroot/posix/glibc/regex/
H A Dregexec.c4197 struct re_backref_cache_entry* new_entry; in match_ctx_add_entry() local
4198 new_entry = re_realloc (mctx->bkref_ents, struct re_backref_cache_entry, in match_ctx_add_entry()
4200 if (BE (new_entry == NULL, 0)) in match_ctx_add_entry()
4205 mctx->bkref_ents = new_entry; in match_ctx_add_entry()
4294 re_sub_match_last_t *new_entry; in match_ctx_add_sublast() local
4306 new_entry = calloc (1, sizeof (re_sub_match_last_t)); in match_ctx_add_sublast()
4307 if (BE (new_entry != NULL, 1)) in match_ctx_add_sublast()
4309 subtop->lasts[subtop->nlasts] = new_entry; in match_ctx_add_sublast()
4310 new_entry->node = node; in match_ctx_add_sublast()
4311 new_entry->str_idx = str_idx; in match_ctx_add_sublast()
[all …]
/haiku/src/tests/kits/app/bmessage/
H A DBMessageCases34 status_t Rename(const char *old_entry, const char *new_entry);