Searched refs:lookup (Results 1 - 22 of 22) sorted by relevance

/haiku/src/kits/debug/
H A Ddebug_support.cpp23 SymbolLookup* lookup; member in struct:debug_symbol_lookup_context
354 // create the lookup context
361 // create and init symbol lookup
362 SymbolLookup *lookup = new(std::nothrow) SymbolLookup(team, image); local
363 if (lookup == NULL)
365 ObjectDeleter<SymbolLookup> lookupDeleter(lookup);
368 status_t error = lookup->Init();
376 lookupContext->lookup = lookup;
389 delete lookupContext->lookup;
[all...]
/haiku/src/libs/util/
H A Drealhostname.c62 char lookup[MAXHOSTNAMELEN]; local
64 strncpy(lookup, hp->h_name, sizeof(lookup) - 1);
65 lookup[sizeof(lookup) - 1] = '\0';
66 hp = gethostbyname(lookup);
/haiku/src/kits/debugger/elf/
H A DElfSymbolLookup.cpp332 ElfSymbolLookup* lookup; local
334 lookup = new(std::nothrow) ElfSymbolLookupImpl<ElfClass64>(source,
338 lookup = new(std::nothrow) ElfSymbolLookupImpl<ElfClass32>(source,
343 if (lookup == NULL)
347 status_t error = lookup->Init(cacheSource);
349 _lookup = lookup;
351 delete lookup;
/haiku/src/system/libroot/posix/musl/search/
H A Dhsearch.c91 static ENTRY *lookup(char *key, size_t hash, struct hsearch_data *htab) function
139 ENTRY *e = lookup(item.key, hash, htab);
157 e = lookup(item.key, hash, htab);
/haiku/src/add-ons/kernel/file_systems/layers/attribute_overlay/
H A Dattribute_overlay.cpp360 // TODO: the ".." lookup is not actually valid for non-directory vnodes.
362 // lookup hook and has hardcoded ".." to resolve to the parent entry. if we
365 const char *lookup[] local
367 int32 lookupCount = sizeof(lookup) / sizeof(lookup[0]);
372 if (currentVnode.ops->lookup == NULL) {
373 TRACE_ALWAYS("lookup not possible, lookup hook missing\n");
381 fStatus = currentVnode.ops->lookup(volume, &currentVnode, lookup[
[all...]
/haiku/headers/private/userlandfs/fuse/
H A Dfuse_lowlevel_compat.h15 void (*lookup) (fuse_req_t req, fuse_ino_t parent, const char *name); member in struct:fuse_lowlevel_ops_compat25
82 void (*lookup) (fuse_req_t req, fuse_ino_t parent, const char *name); member in struct:fuse_lowlevel_ops_compat
H A Dfuse_lowlevel.h71 * In lookup, zero means negative entry (from version 2.5)
96 * for open(), FUSE uses attr.st_size from lookup() to determine
205 void (*lookup) (fuse_req_t req, fuse_ino_t parent, const char *name); member in struct:fuse_lowlevel_ops
213 * The inode's lookup count increases by one for every call to
215 * indicates by how much the lookup count should be decreased.
217 * Inodes with a non-zero lookup count may receive request from
221 * of the inode until the lookup count reaches zero. Calls to
231 * On unmount the lookup count for all inodes implicitly drops
338 * If the file's inode's lookup count is non-zero, the file
340 * until the lookup coun
[all...]
/haiku/src/add-ons/kernel/file_systems/cdda/
H A Dcdda.cpp70 // Windows CP-1252 - Use a lookup table
71 static const uint32 lookup[] = { local
78 c = lookup[c - 0x80];
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A DFUSELowLevel.cpp87 if (ops->lookup == NULL)
91 ops->lookup(&request, parent, name);
/haiku/src/add-ons/kernel/partitioning_systems/atari/
H A Datari.cpp193 #warning M68K: use a lookup table ?
/haiku/src/bin/network/ftpd/
H A Dftpcmd.y250 lookup(struct tab *, char *);
1185 lookup(struct tab *p, char *cmd)
1344 p = lookup(cmdtab, cbuf);
1366 p = lookup(sitetab, cp);
1603 c = lookup(ctab, s);
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/haiku/
H A DHaikuKernelFileSystem.cpp304 capabilities.Set(FS_VNODE_CAPABILITY_LOOKUP, ops->lookup);
H A DHaikuKernelVolume.cpp273 if (!dir->ops->lookup)
275 return dir->ops->lookup(&fVolume, dir, entryName, vnid);
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_ioctl.c1561 struct scanlookup lookup; local
1568 lookup.se = NULL;
1569 lookup.mac = mac;
1570 lookup.esslen = ssid_len;
1571 lookup.essid = ssid;
1572 ieee80211_scan_iterate(vap, mlmelookup, &lookup);
1573 if (lookup.se == NULL)
1576 if (!ieee80211_sta_join(vap, lookup.se->se_chan, lookup.se))
/haiku/src/system/libroot/posix/glibc/regex/
H A Dregex_internal.h67 # include <locale/coll-lookup.h>
/haiku/headers/os/drivers/
H A Dfs_interface.h118 status_t (*lookup)(fs_volume* volume, fs_vnode* dir, const char* name, member in struct:fs_vnode_ops
/haiku/headers/private/fs_shell/
H A Dfssh_fs_interface.h127 fssh_status_t (*lookup)(fssh_fs_volume *volume, fssh_fs_vnode *dir, member in struct:fssh_fs_vnode_ops
/haiku/src/system/kernel/
H A Delf.cpp386 // search standard symbol lookup table
491 // search standard symbol lookup table
1346 // #pragma mark - userland symbol lookup
1677 // search standard symbol lookup table
1760 UserSymbolLookup& lookup = UserSymbolLookup::Default();
1761 status_t error = lookup.Init(team);
1765 return lookup.LookupSymbolAddress(address, _baseAddress, _symbolName,
1791 // search standard symbol lookup table
2752 "lookup symbol for a particular address");
/haiku/src/add-ons/kernel/file_systems/layers/log_overlay/
H A Dlog_overlay.cpp108 DO_LOG("lookup name: \"%s\"\n", name);
109 OVERLAY_CALL(lookup, name, id)
110 DO_LOG("lookup result: %#" B_PRIx32 "; id: %" B_PRIdINO "\n", result, *id);
/haiku/src/add-ons/kernel/file_systems/bindfs/
H A Dkernel_interface.cpp146 error = sourceNode->ops->lookup(sourceVolume, sourceNode, entryName, _vnid);
152 // lookup() on the source gave us a reference we don't need any longer
/haiku/src/tools/fs_shell/
H A Dvfs.cpp796 TRACE(("get_vnode: tried to lookup vnode, got %p\n", vnode));
1066 fssh_status_t status = FS_CALL(dir, lookup, name, &id);
1075 fssh_panic("lookup_dir_entry(): could not lookup vnode (mountid %d "
1473 // lookup the parent vnode
/haiku/src/system/kernel/fs/
H A Dvfs.cpp1178 TRACE(("get_vnode: tried to lookup vnode, got %p\n", vnode));
2085 status_t status = FS_CALL(dir, lookup, name, &id);
2089 // The lookup() hook calls get_vnode() or publish_vnode(), so we do already
2096 panic("lookup_dir_entry(): could not lookup vnode (mountid 0x%" B_PRIx32
2600 // lookup the parent vnode
4089 // lookup mount -- the caller is required to make sure that the mount
4104 // lookup mount -- the caller is required to make sure that the mount
4119 // lookup mount -- the caller is required to make sure that the mount
4552 // lookup the node
4558 panic("vfs_create_special_node(): lookup o
[all...]

Completed in 344 milliseconds