Searched refs:entry (Results 501 - 525 of 922) sorted by relevance

<<21222324252627282930>>

/haiku/src/add-ons/kernel/busses/scsi/usb/
H A DTODO11 4)(????)Correct locking of driver entry in xpt_scsi_io
/haiku/src/bin/
H A Droster.cpp68 // Allocate a entry and get it's path.
70 BEntry entry(&info.ref);
71 BPath path(&entry);
H A Dcopyattr.cpp60 "contents; if the destination file is not a directory, or for a source entry\n"
61 "there exists no destination entry, the program aborts with an error\n"
293 // apply entry filter
469 dirent *entry = (dirent*)buffer; local
470 while (sourceDir.GetNextDirents(entry, sizeof(buffer), 1) == 1) {
471 if (strcmp(entry->d_name, ".") == 0
472 || strcmp(entry->d_name, "..") == 0) {
476 // construct new entry paths
478 error = sourceEntryPath.SetTo(sourcePath, entry->d_name);
480 fprintf(stderr, "Error: Failed to construct entry pat
[all...]
/haiku/headers/private/storage/
H A DAddOnMonitorHandler.h89 bool _FindEntry(const node_ref& entry,
96 bool _HasEntry(const node_ref& entry,
/haiku/src/apps/expander/
H A DDirectoryFilePanel.cpp37 BEntry entry(ref, true);
38 return entry.IsDirectory();
/haiku/headers/os/storage/
H A DNode.h37 BNode(const BEntry* entry);
48 status_t SetTo(const BEntry* entry);
/haiku/src/kits/tracker/
H A DPoseList.cpp63 PoseList::FindPose(const entry_ref* entry, int32* resultingIndex) const argument
69 if (*pose->TargetModel()->EntryRef() == *entry) {
H A DTrashWatcher.cpp215 BEntry entry; local
216 if (trashDir.GetNextEntry(&entry) == B_OK)
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DKernelDebug.cpp27 KDebugFSMap::Entry entry = it.Next(); local
28 FileSystemInitializer* fsInitializer = entry.value;
/haiku/src/kits/package/hpkg/
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/tests/kits/interface/bdeskbar/
H A DDeskbarAddItemTest.cpp86 BEntry entry(pulsePath);
88 assert(entry.GetRef(&ref) == B_OK);
/haiku/src/servers/registrar/
H A DAppInfoList.cpp295 BEntry entry(ref, true);
297 if (entry.GetRef(&realRef) != B_OK)
/haiku/src/kits/storage/
H A DSymLink.cpp52 BSymLink::BSymLink(const BEntry* entry) argument
53 : BNode(entry)
H A DCopyEngine.cpp133 // apply entry filter
167 "Can't copy \"%s\", since entry \"%s\" is in the way.\n",
295 dirent *entry = (dirent*)buffer; local
296 while (sourceDir.GetNextDirents(entry, sizeof(buffer), 1) == 1) {
297 if (strcmp(entry->d_name, ".") == 0
298 || strcmp(entry->d_name, "..") == 0) {
302 // construct new entry paths
304 error = sourceEntryPath.SetTo(sourcePath, entry->d_name);
307 "Failed to construct entry path from dir \"%s\" and name "
308 "\"%s\": %s\n", sourcePath, entry
[all...]
/haiku/src/servers/input/
H A DAddOnManager.h50 status_t _RegisterAddOn(BEntry& entry);
51 status_t _UnregisterAddOn(BEntry& entry);
/haiku/src/apps/cortex/InfoView/
H A DFileNodeInfoView.cpp158 BEntry entry(&nodeFile);
160 entry.GetName(fileName);
/haiku/headers/build/os/storage/
H A DEntry.h48 BEntry(const BEntry &entry);
66 status_t GetParent(BEntry *entry) const;
101 /*! File descriptor for the entry's parent directory. */
104 /*! Leaf name of the entry. */
H A DNode.h41 to it in the filesystem (i.e. its entry); a BNode is solely concerned with
42 the entry's data and attributes.
53 BNode(const BEntry *entry);
64 status_t SetTo(const BEntry *entry);
/haiku/src/preferences/filetypes/
H A DFileTypes.cpp226 BEntry entry; local
229 status_t status = entry.SetTo(&ref, traverseLinks);
231 status = file.SetTo(&entry, B_READ_ONLY);
254 if (entry.GetRef(&target) == B_OK && target != ref)
264 BWindow* window = new ApplicationTypeWindow(fSettings.Message(), entry);
314 BEntry entry; local
316 if ((status = entry.SetTo(path.Path(), false)) != B_OK
317 || (status = entry.GetRef(&ref)) != B_OK) {
/haiku/src/apps/stylededit/
H A DStyledEditWindow.cpp642 BEntry entry; local
644 status = entry.SetTo(&dir, name);
646 status = entry.GetRef(&ref);
825 BEntry entry(&dir, name);
828 if (dir.InitCheck() == B_OK && entry.InitCheck() == B_OK) {
830 BFile file(&entry, B_READ_WRITE | B_CREATE_FILE);
952 BEntry entry(ref, true);
957 entry.GetParent(&parent);
958 entry.GetName(name);
1509 BEntry entry(re
1594 BEntry entry; local
2235 BEntry entry, folderEntry; local
[all...]
/haiku/src/apps/musiccollection/
H A DFileMonitor.h22 entry_ref entry; member in struct:WatchedFile
118 virtual bool ReadNextEntry(entry_ref& entry) = 0;
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DBPlusTree.cpp475 void* entry; // This could be unused entry so we should check local
476 entry = (void*)(fSingleDirBlock + ExtentDataHeader::Size(fInode));
480 entry = (void*)(fSingleDirBlock
482 // This gets us a little faster to the next entry
497 // map entry but is not the first block
502 entry = (void*)(fSingleDirBlock + ExtentDataHeader::Size(fInode));
506 // When the block isn't mapped in the current data map entry
517 entry = (void*)(fSingleDirBlock + ExtentDataHeader::Size(fInode));
522 ExtentUnusedEntry* unusedEntry = (ExtentUnusedEntry*)entry;
781 ExtentDataEntry* entry local
[all...]
H A DLeafAttribute.cpp152 // We have valid attribute entry to stat
248 AttrLeafEntry* entry = local
251 uint32 offset = B_BENDIAN_TO_HOST_INT16(entry->nameidx);
256 if (entry->flags & XFS_ATTR_LOCAL) {
286 AttrLeafEntry* entry = (AttrLeafEntry*)(fLeafBuffer + AttrLeafHeader::Size(fInode)); local
294 hashLowerBound<AttrLeafEntry>(entry, left, right, hashValueOfRequest);
296 while (B_BENDIAN_TO_HOST_INT32(entry[left].hashval) == hashValueOfRequest) {
298 uint32 offset = B_BENDIAN_TO_HOST_INT16(entry[left].nameidx);
303 if (entry[left].flags & XFS_ATTR_LOCAL) {
/haiku/src/servers/app/font/
H A DGlobalFontManager.h88 status_t _AddPath(BEntry& entry,
95 BEntry& entry);
/haiku/src/apps/diskprobe/
H A DDataEditor.cpp389 DataEditor::DataEditor(BEntry &entry, const char *attribute) argument
394 SetTo(entry, attribute);
415 BEntry entry(path);
416 return SetTo(entry, attribute);
423 BEntry entry(&ref);
424 return SetTo(entry, attribute);
429 DataEditor::SetTo(BEntry &entry, const char *attribute) argument
446 status_t status = entry.GetStat(&stat);
450 entry.GetRef(&fAttributeRef);
454 if (entry
[all...]

Completed in 264 milliseconds

<<21222324252627282930>>