Searched refs:entry (Results 226 - 250 of 922) sorted by path

1234567891011>>

/haiku/src/kits/debugger/files/
H A DFileManager.h76 void _SourceFileUnused(SourceFileEntry* entry);
H A DLocatableDirectory.cpp71 LocatableDirectory::AddEntry(LocatableEntry* entry) argument
73 fEntries.Add(entry);
78 LocatableDirectory::RemoveEntry(LocatableEntry* entry) argument
80 fEntries.Remove(entry);
/haiku/src/kits/debugger/model/
H A DExpressionValues.cpp110 ValueEntry* entry = it.Next();) {
111 if (SetValue(entry->function, entry->thread, entry->expression,
112 entry->value) != B_OK) {
144 ValueEntry* entry = fValues->Lookup(Key(function, thread, *expression)); local
145 if (entry == NULL)
148 _value = entry->value;
165 ValueEntry* entry = fValues->Lookup(Key(function, thread, expression)); local
166 if (entry
182 ValueEntry* entry = fValues->Clear(true); local
[all...]
H A DStackFrameValueInfos.cpp136 InfoEntry* entry = fValues->Lookup( local
138 if (entry == NULL)
142 entry->type->AcquireReference();
143 *_type = entry->type;
147 entry->location->AcquireReference();
148 *_location = entry->location;
167 InfoEntry* entry = fValues->Lookup(Key(variable, path)); local
168 if (entry == NULL) {
169 entry = new(std::nothrow) InfoEntry(variable, path);
170 if (entry
184 InfoEntry* entry = fValues->Clear(true); local
[all...]
H A DStackFrameValues.cpp102 ValueEntry* entry = it.Next();) {
103 if (SetValue(entry->variable, entry->path, entry->value) != B_OK)
134 ValueEntry* entry = fValues->Lookup( local
136 if (entry == NULL)
139 _value = entry->value;
156 ValueEntry* entry = fValues->Lookup(Key(variable, path)); local
157 if (entry == NULL) {
158 entry
173 ValueEntry* entry = fValues->Clear(true); local
[all...]
/haiku/src/kits/device/
H A DJoystickTweaker.cpp95 BEntry entry;
98 while (root.GetNextEntry(&entry) == B_OK) {
99 if (entry.IsDirectory()) {
100 status_t result = _ScanIncludingDisabled(rootPath, list, &entry);
108 status_t result = entry.GetPath(&path);
H A DUSBRoster.cpp68 BEntry entry(ref);
69 entry.GetNodeRef(&fNode);
72 if (entry.IsDirectory() && directory.SetTo(ref) >= B_OK) {
75 while(directory.GetNextEntry(&entry) >= B_OK) {
76 if (entry.GetRef(ref) < B_OK)
95 entry.GetPath(&path);
191 BEntry entry("/dev/bus/usb");
192 if (!entry.Exists()) {
204 entry.GetRef(&ref);
/haiku/src/kits/interface/
H A DShelf.cpp1140 BShelf::_InitData(BEntry *entry, BDataIO *stream, BView *view, argument
1145 fEntry = entry;
1155 fStream = new BFile(entry, B_READ_ONLY);
/haiku/src/kits/mail/
H A DFileConfigView.cpp88 BEntry entry(&ref);
89 if (entry.InitCheck() == B_OK) {
91 entry.GetPath(&path);
H A DMailAttachment.cpp578 BAttributedMailAttachment::SaveToDisk(BEntry *entry) argument
590 entry->SetTo(path.String());
H A DMailProtocol.cpp278 BEntry entry(&ref);
279 BPath path(&entry);
309 BEntry entry(&ref);
310 status_t status = entry.Remove();
338 BEntry entry(&ref);
339 status = entry.Rename(workerName);
H A DMailSettings.cpp326 BEntry entry; local
327 while (dir.GetNextEntry(&entry) != B_ENTRY_NOT_FOUND) {
328 BNode node(&entry);
333 BMailAccountSettings* account = new BMailAccountSettings(entry);
445 BEntry entry(path.Path());
446 if (entry.Exists()) {
984 BEntry entry(path.Path());
985 if (entry.Exists()) {
986 if (entry.GetRef(&ref) == B_OK)
H A Db_mail_message.cpp89 BEntry entry(path);
91 if ((status = entry.InitCheck()) < B_OK)
95 if ((status = entry.GetRef(&ref)) < B_OK)
/haiku/src/kits/media/
H A DTimedEventQueuePrivate.cpp58 event_queue_entry *entry; local
59 entry = fFirstEntry;
60 while (entry) {
62 deleteme = entry;
63 entry = entry->next;
118 for (event_queue_entry *entry = fLastEntry; entry; entry = entry
227 event_queue_entry *entry; local
287 event_queue_entry *entry; local
420 event_queue_entry *entry; local
507 RemoveEntry(event_queue_entry *entry) argument
587 event_queue_entry *entry; local
603 event_queue_entry *entry; local
[all...]
H A DTimedEventQueuePrivate.h65 void RemoveEntry(event_queue_entry *entry);
/haiku/src/kits/network/libnetapi/
H A DNetworkAddressResolver.cpp309 CacheEntry* entry = sCacheMap.ItemAt(i); local
310 if (entry->Matches(family, address, service, flags)) {
311 // This entry is now the MRU, move to end of list.
315 return entry->fResolver;
327 CacheEntry* entry = new(std::nothrow) CacheEntry(family, address, local
336 if (entry)
337 sCacheMap.AddItem(entry, sCacheMap.CountItems());
/haiku/src/kits/package/
H A DContext.cpp66 BContext::GetNewTempfile(const BString& baseName, BEntry* entry) const
68 if (entry == NULL)
72 *entry = fTempfileManager->Create(baseName);
73 return entry->InitCheck();
H A DDaemonClient.cpp190 BEntry entry; local
191 _transactionDirectory.GetEntry(&entry);
193 if (entry.InitCheck() == B_OK)
194 entry.Remove();
H A DRepositoryCache.cpp143 BRepositoryCache::SetTo(const BEntry& entry) argument
150 fEntry = entry;
154 if ((result = entry.GetPath(&repositoryCachePath)) != B_OK)
170 fIsUserSpecific = userSettingsDir.Contains(&entry);
H A DTempfileManager.cpp34 BEntry entry; local
35 while (fBaseDirectory.GetNextEntry(&entry) == B_OK)
36 entry.Remove();
38 fBaseDirectory.GetEntry(&entry);
39 entry.Remove();
/haiku/src/kits/package/hpkg/
H A DPackageReaderImpl.cpp66 AttributeAttributeHandler(BPackageEntry* entry, const char* name) argument
68 fEntry(entry),
125 "entry name: \"%s\"\n", name);
269 "package entry (%llu)\n", fileType);
H A DRepositoryReaderImpl.cpp136 virtual status_t HandleEntry(BPackageEntry* entry) argument
141 virtual status_t HandleEntryAttribute(BPackageEntry* entry, argument
147 virtual status_t HandleEntryDone(BPackageEntry* entry) argument
H A DRepositoryWriterImpl.cpp106 virtual status_t HandleEntry(BPackageEntry* entry) argument
111 || entry == NULL)
115 const BPackageEntry* parent = entry->Parent();
131 if (licenseNames.StringAt(i).ICompare(entry->Name()) == 0) {
138 BPackageData& packageData = entry->Data();
147 return fRepositoryInfo->AddLicense(entry->Name(), licenseText);
150 virtual status_t HandleEntryAttribute(BPackageEntry* entry, argument
156 virtual status_t HandleEntryDone(BPackageEntry* entry) argument
328 fListener->PrintError("entry not initialized!\n");
334 fListener->PrintError("can't get path for entry '
[all...]
/haiku/src/kits/package/hpkg/v1/
H A DPackageInfoContentHandlerV1.cpp36 BPackageInfoContentHandler::HandleEntry(BPackageEntry* entry) argument
43 BPackageInfoContentHandler::HandleEntryAttribute(BPackageEntry* entry, argument
51 BPackageInfoContentHandler::HandleEntryDone(BPackageEntry* entry) argument
H A DPackageReaderImplV1.cpp131 AttributeAttributeHandler(BPackageEntry* entry, const char* name) argument
133 fEntry(entry),
194 "entry name: \"%s\"\n", name);
342 "package entry (%llu)\n", fileType);

Completed in 144 milliseconds

1234567891011>>