Searched refs:entry (Results 401 - 425 of 922) sorted by last modified time

<<11121314151617181920>>

/haiku/src/apps/cortex/MediaRoutingView/
H A DMediaRoutingView.cpp1030 BEntry entry(path);
1032 err = entry.GetRef(&ref);
1726 BEntry entry(ref, true);
1727 entry.GetRef(ref);
1771 BEntry entry(ref);
1772 entry.GetName(fileName);
1888 // found match; extract message & remove entry
/haiku/src/apps/cortex/InfoView/
H A DFileNodeInfoView.cpp158 BEntry entry(&nodeFile);
160 entry.GetName(fileName);
/haiku/src/apps/text_search/
H A DFileIterator.cpp29 FileIterator::_ExamineFile(BEntry& entry, char* buffer, bool textFilesOnly) argument
32 if (entry.GetPath(&path) != B_OK)
37 BNode node(&entry);
/haiku/src/system/kernel/arch/x86/32/
H A Dthread.cpp171 /*! Prepares the given thread's kernel stack for executing its entry function.
176 \param function The entry function the thread shall execute.
177 \param data Pointer to be passed to the entry function.
222 arch_thread_enter_userspace(Thread* thread, addr_t entry, void* args1, argument
228 TRACE(("arch_thread_enter_userspace: entry 0x%lx, args %p %p, "
229 "ustack_top 0x%lx\n", entry, args1, args2, stackTop));
234 // entry function returns to the top of the stack to act as the return
252 frame.ip = entry;
373 TRACE(("### arch_restore_signal_frame: entry\n"));
/haiku/src/add-ons/tracker/openterminal/
H A DOpenTerminal.cpp35 BEntry entry; local
46 if (entry.SetTo(&tracker_ref, true) != B_OK)
49 // If the entry is a file then look for the parent directory.
50 if (!entry.IsDirectory()) {
51 if (entry.GetParent(&entry) != B_OK)
59 if (entries[x] == entry) {
69 // Push entry onto the vector so we can check for duplicates later.
70 entries.push_back(BEntry(entry));
72 launch_terminal(entry);
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi2200/dev/iwi/
H A Dif_iwi.c875 /* XXX assign sta table entry for adhoc */
1759 const u_int8_t addr[IEEE80211_ADDR_LEN], int entry)
1767 DPRINTF(("%s mac %6D station %u\n", __func__, node.bssid, ":", entry));
1770 IWI_CSR_NODE_BASE + entry * sizeof node,
1830 * so there will be no station entry. We reserve
1831 * entry 0 for one mcast address and use that.
2750 * net80211). The first entry in each run specifies the
1758 iwi_write_ibssnode(struct iwi_softc *sc, const u_int8_t addr[IEEE80211_ADDR_LEN], int entry) argument
/haiku/src/kits/storage/mime/
H A DDatabase.cpp121 BEntry entry;
122 status_t err = entry.SetTo(fLocation->WritablePathForType(type));
124 if (entry.Exists())
153 BEntry entry;
154 status_t status = entry.SetTo(fLocation->WritablePathForType(type));
159 if (entry.IsDirectory()) {
161 BDirectory directory(&entry);
180 status = entry.Remove();
743 /*! \brief Guesses a MIME type for the entry referred to by the given
748 - If the entry i
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/
H A Dar5416.h285 extern HAL_BOOL ar5416ResetKeyCacheEntry(struct ath_hal *ah, uint16_t entry);
286 extern HAL_BOOL ar5416SetKeyCacheEntry(struct ath_hal *ah, uint16_t entry,
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5212/
H A Dar5212_keycache.c51 * Return true if the specific key cache entry is valid.
54 ar5212IsKeyCacheEntryValid(struct ath_hal *ah, uint16_t entry) argument
56 if (entry < AH_PRIVATE(ah)->ah_caps.halKeyCacheSize) {
57 uint32_t val = OS_REG_READ(ah, AR_KEYTABLE_MAC1(entry));
65 * Clear the specified key cache entry and any associated MIC entry.
68 ar5212ResetKeyCacheEntry(struct ath_hal *ah, uint16_t entry) argument
72 if (entry >= AH_PRIVATE(ah)->ah_caps.halKeyCacheSize) {
73 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: entry %u out of range\n",
74 __func__, entry);
112 ar5212SetKeyCacheEntryMac(struct ath_hal *ah, uint16_t entry, const uint8_t *mac) argument
156 ar5212SetKeyCacheEntry(struct ath_hal *ah, uint16_t entry, const HAL_KEYVAL *k, const uint8_t *mac, int xorKey) argument
[all...]
H A Dar5212.h458 extern HAL_BOOL ar5212IsKeyCacheEntryValid(struct ath_hal *, uint16_t entry);
459 extern HAL_BOOL ar5212ResetKeyCacheEntry(struct ath_hal *ah, uint16_t entry);
461 uint16_t entry, const uint8_t *mac);
462 extern HAL_BOOL ar5212SetKeyCacheEntry(struct ath_hal *ah, uint16_t entry,
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5211/
H A Dar5211_keycache.c46 * Return true if the specific key cache entry is valid.
49 ar5211IsKeyCacheEntryValid(struct ath_hal *ah, uint16_t entry) argument
51 if (entry < AR_KEYTABLE_SIZE) {
52 uint32_t val = OS_REG_READ(ah, AR_KEYTABLE_MAC1(entry));
60 * Clear the specified key cache entry
63 ar5211ResetKeyCacheEntry(struct ath_hal *ah, uint16_t entry) argument
65 if (entry < AR_KEYTABLE_SIZE) {
66 OS_REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
67 OS_REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
68 OS_REG_WRITE(ah, AR_KEYTABLE_KEY2(entry),
83 ar5211SetKeyCacheEntryMac(struct ath_hal *ah, uint16_t entry, const uint8_t *mac) argument
117 ar5211SetKeyCacheEntry(struct ath_hal *ah, uint16_t entry, const HAL_KEYVAL *k, const uint8_t *mac, int xorKey) argument
[all...]
H A Dar5211.h300 extern HAL_BOOL ar5211ResetKeyCacheEntry(struct ath_hal *, uint16_t entry);
301 extern HAL_BOOL ar5211SetKeyCacheEntry(struct ath_hal *, uint16_t entry,
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5210/
H A Dar5210.h275 extern HAL_BOOL ar5210ResetKeyCacheEntry(struct ath_hal *, uint16_t entry);
276 extern HAL_BOOL ar5210SetKeyCacheEntry(struct ath_hal *, uint16_t entry,
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/
H A Dar9300_stub_funcs.h31 extern HAL_BOOL ar9300_Stub_IsKeyCacheEntryValid(struct ath_hal *, uint16_t entry);
32 extern HAL_BOOL ar9300_Stub_ResetKeyCacheEntry(struct ath_hal *ah, uint16_t entry);
34 uint16_t entry, const uint8_t *mac);
35 extern HAL_BOOL ar9300_Stub_SetKeyCacheEntry(struct ath_hal *ah, uint16_t entry,
H A Dar9300_stub_funcs.c165 ar9300_Stub_IsKeyCacheEntryValid(struct ath_hal *ah, uint16_t entry) argument
173 ar9300_Stub_ResetKeyCacheEntry(struct ath_hal *ah, uint16_t entry) argument
181 ar9300_Stub_SetKeyCacheEntryMac(struct ath_hal *ah, uint16_t entry, argument
190 ar9300_Stub_SetKeyCacheEntry(struct ath_hal *ah, uint16_t entry, argument
H A Dar9300.h1221 extern HAL_BOOL ar9300_is_key_cache_entry_valid(struct ath_hal *, u_int16_t entry);
1222 extern HAL_BOOL ar9300_reset_key_cache_entry(struct ath_hal *ah, u_int16_t entry);
1227 u_int16_t entry, const u_int8_t *mac);
1228 extern HAL_BOOL ar9300_set_key_cache_entry(struct ath_hal *ah, u_int16_t entry,
1232 extern HAL_BOOL ar9300_check_key_cache_entry(struct ath_hal *ah, u_int16_t entry,
1458 extern void ar9300_dump_keycache(struct ath_hal *ah, int n, u_int32_t *entry);
1637 ah, entry, rx_staggered_sounding, channel_estimation_cap, mmss)
1638 #define ar9300_read_key_cache_mac(ah, entry, mac) false
/haiku/src/servers/input/
H A DAddOnManager.cpp64 BEntry entry(&ref, false);
66 fManager->_RegisterAddOn(entry);
75 BEntry entry(&ref, false);
77 fManager->_UnregisterAddOn(entry);
319 AddOnManager::_RegisterAddOn(BEntry& entry) argument
321 BPath path(&entry);
324 status_t status = entry.GetRef(&ref);
367 AddOnManager::_UnregisterAddOn(BEntry& entry) argument
369 BPath path(&entry);
372 status_t status = entry
[all...]
H A DAddOnManager.h50 status_t _RegisterAddOn(BEntry& entry);
51 status_t _UnregisterAddOn(BEntry& entry);
/haiku/src/apps/mail/
H A DWords.cpp124 WIndexEntry entry; local
134 entry.offset = -1;
151 entry.offset = blockOffset + (nptr - buffer);
153 entry.offset++;
159 // Add previous entry to word index
164 entry.key = GetKey(entryName);
165 AddItem(&entry);
173 entry.key = GetKey(suffixName);
174 AddItem(&entry);
179 // Init new entry
712 FileEntry* entry; local
[all...]
H A DMailApp.cpp161 BEntry entry; local
227 else if (entry.SetTo(argv[loop]) == B_NO_ERROR)
231 entry.GetRef(&ref);
488 BEntry entry; local
540 && directory.GetNextEntry(&entry) != B_ENTRY_NOT_FOUND) {
541 dataPath.SetTo(&entry);
685 BEntry entry(&ref);
686 if (entry.InitCheck() < B_OK)
690 if (entry.GetNodeRef(&nodeRef) < B_OK)
965 BEntry entry; local
[all...]
/haiku/src/system/boot/loader/file_systems/packagefs/
H A Dpackagefs.cpp389 virtual status_t HandleEntry(BPackageEntry* entry) argument
398 if (const BPackageEntry* parentEntry = entry->Parent()) {
408 || entry->Parent() == fLastSettingsEntryEntry)) {
410 = fSettingsItem->FindEntry(fLastSettingsEntry, entry->Name());
413 fLastSettingsEntryEntry = entry;
425 mode_t mode = entry->Mode() & ~(mode_t)(S_IWUSR | S_IWGRP | S_IWOTH);
431 node = new(std::nothrow) PackageFile(fVolume, mode, entry->Data());
439 error = symlink->SetSymlinkPath(entry->SymlinkPath());
455 error = node->Init(parentDir, entry->Name(), fVolume->NextNodeID());
461 node->SetModifiedTime(entry
471 HandleEntryAttribute(BPackageEntry* entry, BPackageEntryAttribute* attribute) argument
478 HandleEntryDone(BPackageEntry* entry) argument
[all...]
H A DPackageSettingsItem.h137 void AddEntry(Entry* entry);
/haiku/src/kits/debugger/dwarf/
H A DDwarfUtils.h19 static void GetDIEName(const DebugInfoEntry* entry,
21 static void GetDIETypeName(const DebugInfoEntry* entry,
25 static void GetFullDIEName(const DebugInfoEntry* entry,
28 const DebugInfoEntry* entry,
34 const DebugInfoEntry* entry,
40 static EntryType* GetDIEByPredicate(EntryType* entry,
47 DwarfUtils::GetDIEByPredicate(EntryType* entry, const Predicate& predicate) argument
49 if (predicate(entry))
50 return entry;
54 entry
[all...]
H A DDwarfUtils.cpp17 DwarfUtils::GetDIEName(const DebugInfoEntry* entry, BString& _name) argument
21 const char* name = entry->Name();
23 if (DebugInfoEntry* abstractOrigin = entry->AbstractOrigin()) {
24 entry = abstractOrigin;
25 name = entry->Name();
32 if (DebugInfoEntry* specification = entry->Specification()) {
33 entry = specification;
34 name = entry->Name();
43 DwarfUtils::GetDIETypeName(const DebugInfoEntry* entry, BString& _name, argument
46 const DIEType* type = dynamic_cast<const DIEType*>(entry);
105 GetFullDIEName(const DebugInfoEntry* entry, BString& _name) argument
188 GetFullyQualifiedDIEName(const DebugInfoEntry* entry, BString& _name, const DebugInfoEntry* requestingEntry) argument
238 GetDeclarationLocation(DwarfFile* dwarfFile, const DebugInfoEntry* entry, const char*& _directory, const char*& _file, int32& _line, int32& _column) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/packagefs/volume/
H A DPackageSettings.h113 void AddEntry(Entry* entry);

Completed in 138 milliseconds

<<11121314151617181920>>