Searched refs:entry (Results 251 - 275 of 1061) sorted by relevance

<<11121314151617181920>>

/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/ramfs/
H A DNode.cpp112 Node::Link(Entry *entry) argument
115 fReferrers.Insert(entry);
119 fReferrers.Remove(entry);
126 Node::Unlink(Entry *entry) argument
130 fReferrers.Remove(entry);
235 // set the iterators' current entry
341 Node::GetPreviousReferrer(Entry *entry) const
343 return (entry ? fReferrers.GetPrevious(entry) : NULL );
348 Node::GetNextReferrer(Entry *entry) cons
[all...]
H A DVolume.h78 inline EntryListenerValue(EntryListener *listener, Entry *entry, argument
80 : listener(listener), entry(entry), flags(flags) {}
86 Entry *entry; member in class:EntryListenerValue
127 // entry table and listeners
128 status_t EntryAdded(vnode_id id, Entry *entry);
129 status_t EntryRemoved(vnode_id id, Entry *entry);
130 status_t FindEntry(vnode_id id, const char *name, Entry **entry);
131 status_t AddEntryListener(EntryListener *listener, Entry *entry,
133 status_t RemoveEntryListener(EntryListener *listener, Entry *entry);
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/client/
H A DShareNode.h60 void AddReferringEntry(ShareDirEntry* entry);
61 void RemoveReferringEntry(ShareDirEntry* entry);
64 ShareDirEntry* entry) const;
124 bool AddEntry(ShareDirEntry* entry);
160 void AddEntry(ShareDirEntry* entry);
161 void RemoveEntry(ShareDirEntry* entry);
164 ShareDirEntry* GetNextEntry(ShareDirEntry* entry) const;
175 // "moved" (destination entry) event for
176 // which the entry could not be created
177 // (for whatever reason -- missing entry
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/server/
H A DVolumeManager.h59 status_t AddEntry(Entry* entry);
60 void RemoveEntry(Entry* entry);
61 void DeleteEntry(Entry* entry, bool keepNode);
67 Entry** entry);
76 status_t GetPath(Entry* entry, Path* path);
80 Entry* entry);
113 status_t _GenerateEntryRemovedEvent(Entry* entry,
/haiku-fatelf/src/add-ons/print/drivers/postscript/
H A DSelectPPDDlg.cpp104 BEntry entry; local
111 while (dir.GetNextEntry(&entry) == B_OK)
112 if (entry.IsDirectory()
113 && entry.GetName(name) == B_OK)
126 BEntry entry; local
140 while (dir.GetNextEntry(&entry) == B_OK)
141 if (entry.GetName(name) == B_OK) {
/haiku-fatelf/src/bin/bash/lib/readline/
H A Dundo.c126 _rl_copy_undo_entry (entry)
127 UNDO_LIST *entry;
131 new = alloc_undo_entry (entry->what, entry->start, entry->end, (char *)NULL);
132 new->text = entry->text ? savestring (entry->text) : 0;
268 /* Save an undo entry for the text from START to END. */
/haiku-fatelf/src/kits/package/
H A DRepositoryCache.cpp47 virtual status_t HandleEntry(BPackageEntry* entry) argument
52 virtual status_t HandleEntryAttribute(BPackageEntry* entry, argument
58 virtual status_t HandleEntryDone(BPackageEntry* entry) argument
240 BRepositoryCache::SetTo(const BEntry& entry) argument
252 fEntry = entry;
255 if ((result = entry.GetPath(&repositoryCachePath)) != B_OK)
271 fIsUserSpecific = userSettingsDir.Contains(&entry);
/haiku-fatelf/src/kits/tracker/
H A DNavMenu.cpp152 BEntry entry(model->EntryRef(), true);
153 if (entry.InitCheck() == B_OK) {
154 if (entry.IsDirectory()) {
159 Model resolvedModel(&entry);
164 // bad entry ref (bad symlink?), disable
200 BEntry entry(ref, true);
201 if (entry.InitCheck() == B_OK) {
203 if (entry.GetRef(&resolvedRef) == B_OK)
398 BEntry entry; local
400 if (fNavDir.device < 0 || entry
469 BEntry entry; local
501 BEntry entry; local
659 BEntry entry; local
[all...]
H A DFilePanelPriv.cpp199 BEntry entry(path.Path(), true);
200 if (entry.InitCheck() == B_OK && model->SetTo(&entry) == B_OK)
212 BEntry entry; local
213 root.GetEntry(&entry);
214 model->SetTo(&entry);
267 BEntry entry(&ref);
268 if (entry.InitCheck() != B_OK)
271 // if the entry is a symlink
274 if (entry
364 BEntry entry; local
[all...]
/haiku-fatelf/src/system/kernel/arch/m68k/paging/040/
H A DM68KPagingMethod040.cpp56 init_page_root_entry(page_root_entry *entry) argument
59 *entry = DFL_ROOTENT_VAL;
64 update_page_root_entry(page_root_entry *entry, page_root_entry *with) argument
66 // update page directory entry atomically
67 *entry = *with;
72 init_page_directory_entry(page_directory_entry *entry) argument
74 *entry = DFL_DIRENT_VAL;
79 update_page_directory_entry(page_directory_entry *entry, page_directory_entry *with) argument
81 // update page directory entry atomically
82 *entry
87 init_page_table_entry(page_table_entry *entry) argument
94 update_page_table_entry(page_table_entry *entry, page_table_entry *with) argument
103 init_page_indirect_entry(page_indirect_entry *entry) argument
111 update_page_indirect_entry(page_indirect_entry *entry, page_indirect_entry *with) argument
611 PutPageDirInPageRoot(page_root_entry* entry, phys_addr_t pgdirPhysical, uint32 attributes) argument
630 PutPageTableInPageDir(page_directory_entry* entry, phys_addr_t pgtablePhysical, uint32 attributes) argument
640 PutPageTableEntryInTable(page_table_entry* entry, phys_addr_t physicalAddress, uint32 attributes, uint32 memoryType, bool globalPage) argument
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/client/
H A DShareNode.h57 void AddReferringEntry(ShareDirEntry* entry);
58 void RemoveReferringEntry(ShareDirEntry* entry);
61 ShareDirEntry* entry) const;
121 bool AddEntry(ShareDirEntry* entry);
157 void AddEntry(ShareDirEntry* entry);
158 void RemoveEntry(ShareDirEntry* entry);
161 ShareDirEntry* GetNextEntry(ShareDirEntry* entry) const;
172 // "moved" (destination entry) event for
173 // which the entry could not be created
174 // (for whatever reason -- missing entry
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/server/
H A DVolumeManager.h58 status_t AddEntry(Entry* entry);
59 void RemoveEntry(Entry* entry);
60 void DeleteEntry(Entry* entry, bool keepNode);
66 Entry** entry);
75 status_t GetPath(Entry* entry, Path* path);
79 Entry* entry);
112 status_t _GenerateEntryRemovedEvent(Entry* entry,
/haiku-fatelf/src/tests/system/kernel/
H A Dlive_query.cpp113 BEntry entry(volumePath);
114 if (entry.InitCheck() != B_OK) {
120 status_t status = entry.GetVolume(&volume);
251 BEntry entry; local
253 while (query.GetNextEntry(&entry) == B_OK) {
254 if (sFilesOnly && !entry.IsFile())
257 if (entry.GetPath(&path) != B_OK) {
258 fprintf(stderr, "%s: could not get path for entry\n", kProgramName);
/haiku-fatelf/src/bin/
H A Ddiff_zip.cpp45 void Write(const char* entry) argument
47 write(fFD, entry, strlen(entry));
116 // that's OK, the entry was removed
157 while (dirent* entry = readdir(dir)) {
158 if (strcmp(entry->d_name, ".") == 0
159 || strcmp(entry->d_name, "..") == 0) {
163 string entryPath = path + '/' + entry->d_name;
166 fprintf(stderr, "Error: Failed to stat entry \"%s\": %s\n",
172 Node* node = create_node(this, entry
[all...]
H A Dreindex.cpp166 handleFile(BEntry *entry, BNode *node) argument
169 if (gRecursive && entry->IsDirectory()) {
170 BDirectory dir(entry);
183 entry->GetName(name);
185 status_t status = node->SetTo(entry);
232 if (entry->GetRef(&ref) == B_OK) {
350 BEntry entry(*argv);
353 if (entry.InitCheck() == B_OK) {
355 copyIndicesFromVolume(gAttrPattern, entry);
356 handleFile(&entry,
[all...]
/haiku-fatelf/src/libs/compat/freebsd_network/
H A Dfbsd_if_media.c102 struct ifmedia_entry *entry; local
104 for (entry = LIST_FIRST(&ifm->ifm_list); entry;
105 entry = LIST_FIRST(&ifm->ifm_list)) {
106 LIST_REMOVE(entry, ifm_list);
107 kernel_free(entry, M_IFADDR);
122 register struct ifmedia_entry *entry; local
133 entry = kernel_malloc(sizeof(*entry), M_IFADDR, M_NOWAIT);
134 if (entry
[all...]
/haiku-fatelf/src/tools/elfsymbolpatcher/
H A DElfSymbolPatcher.cpp79 Entry* entry = NULL; local
81 entry = new(buffer) Entry(image, targets, targetCount);
82 return entry;
173 for (int i = 0; Entry* entry = EntryAt(i); i++)
174 entry->Patch(newAddress);
190 for (int i = 0; Entry* entry = EntryAt(i); i++)
191 entry->Delete();
222 Entry* entry = Entry::Create(image, (void***)targets->Items(),
224 if (!entry)
226 if (!fEntries.AddItem(entry)) {
606 ElfSymbolPatchInfo::Entry* entry = info->EntryFor(image->GetID()); local
[all...]
/haiku-fatelf/src/bin/coreutils/lib/
H A Dhash.c67 block for this function. In a word, HASHER randomizes a user entry
70 function for a user entry. */
87 some user-provided data (also called a user entry). An entry indistinctly
88 refers to both the internal entry and its associated user entry. A user
89 entry contents may be hashed by a randomization function (the hashing
99 entry is linear in time with the size of the bucket. Consequently, a
246 /* If ENTRY matches an entry already in the hash table, return the
247 entry fro
250 hash_lookup(const Hash_table *table, const void *entry) argument
300 hash_get_next(const Hash_table *table, const void *entry) argument
768 free_entry(Hash_table *table, struct hash_entry *entry) argument
782 hash_find_entry(Hash_table *table, const void *entry, struct hash_entry **bucket_head, bool delete) argument
1030 hash_insert(Hash_table *table, const void *entry) argument
1109 hash_delete(Hash_table *table, const void *entry) argument
[all...]
/haiku-fatelf/headers/private/file_systems/
H A DQueryParser.h136 void LiveUpdate(Entry* entry, Node* node,
140 void LiveUpdateRenameMove(Entry* entry, Node* node,
153 void _SendEntryNotification(Entry* entry,
193 virtual status_t Match(Entry* entry, Node* node,
244 virtual status_t Match(Entry* entry, Node* node,
306 virtual status_t Match(Entry* entry, Node* node,
705 Equation<QueryPolicy>::Match(Entry* entry, Node* node, argument
723 if (entry == NULL)
725 buffer = (uint8*)QueryPolicy::EntryGetNameNoCopy(entry, buffer,
884 Entry* entry
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dcache.c47 * A compare function must be provided for finding a wanted entry
49 * an entry to facilitate multiple invalidation.
82 link->entry = current;
114 while (link && (link->entry != current)) {
141 * Fetch an entry from cache
143 * returns the cache entry, or NULL if not available
144 * The returned entry may be modified, but not freed
160 * locate the entry if present
164 while (link && compare(link->entry, wanted))
167 current = link->entry;
453 struct CACHED_GENERIC *entry; local
[all...]
/haiku-fatelf/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DIMAPStorage.cpp242 BEntry entry(filePath.Path());
245 status_t status = entry.Remove();
259 StorageMailEntry& entry = (*it).second;
262 filePath.Append(entry.fileName);
269 entry.flags = flags;
280 const StorageMailEntry& entry = (*it).second; local
281 return entry.flags;
294 BEntry entry(filePath.Path());
295 status_t status = entry.Rename(name);
414 BEntry entry(filePat
451 StorageMailEntry entry; local
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/ramfs/
H A DVolume.h80 inline EntryListenerValue(EntryListener *listener, Entry *entry, argument
82 : listener(listener), entry(entry), flags(flags) {}
88 Entry *entry; member in class:EntryListenerValue
131 // entry table and listeners
132 status_t EntryAdded(ino_t id, Entry *entry);
133 status_t EntryRemoved(ino_t id, Entry *entry);
134 status_t FindEntry(ino_t id, const char *name, Entry **entry);
135 status_t AddEntryListener(EntryListener *listener, Entry *entry,
137 status_t RemoveEntryListener(EntryListener *listener, Entry *entry);
[all...]
/haiku-fatelf/src/apps/diskusage/
H A DScanner.cpp226 BEntry entry; local
227 dir->GetEntry(&entry);
228 entry.GetRef(&thisDir->ref);
236 if (dir->GetNextEntry(&entry) == B_ENTRY_NOT_FOUND)
238 if (entry.IsSymLink())
241 if (entry.IsFile()) {
243 entry.GetRef(&child->ref);
244 entry.GetSize(&child->size);
257 else if (entry.IsDirectory()) {
258 BDirectory childDir(&entry);
[all...]
/haiku-fatelf/src/apps/musiccollection/
H A DFileMonitor.cpp71 entry_ref& entry = (*fCurrentReadList)[fCurrentReadIndex]; local
73 BNode node(&entry);
77 EntryCreated(entry.name, entry.directory, entry.device,
105 NodeMonitorHandler::make_entry_ref(device, directory, name, &file.entry);
134 NodeMonitorHandler::make_entry_ref(device, toDirectory, name, &file->entry);
268 entry_ref entry; local
269 while (ReadNextEntry(entry)) {
275 fWriteRefList->push_back(entry);
[all...]
/haiku-fatelf/src/bin/gdb/readline/
H A Dmisc.c210 /* Set the history pointer back to the last entry in the history. */
223 _rl_free_history_entry (entry)
224 HIST_ENTRY *entry;
226 if (entry == 0)
228 if (entry->line)
229 free (entry->line);
230 free (entry);
310 rl_replace_from_history (entry, flags)
311 HIST_ENTRY *entry;
314 rl_replace_line (entry
[all...]

Completed in 179 milliseconds

<<11121314151617181920>>