Home
last modified time | relevance | path

Searched refs:fromEntryRef (Results 1 – 3 of 3) sorted by relevance

/haiku/src/kits/storage/
H A DPathMonitor.cpp573 const entry_ref* fromEntryRef = NULL);
600 void _NotifyEntryMoved(const entry_ref& fromEntryRef,
1117 NotOwningEntryRef fromEntryRef; in _EntryMoved() local
1123 || message->FindInt32("device", &fromEntryRef.device) != B_OK in _EntryMoved()
1124 || message->FindInt64("from directory", &fromEntryRef.directory) != B_OK in _EntryMoved()
1126 || message->FindString("from name", (const char**)&fromEntryRef.name) in _EntryMoved()
1132 toEntryRef.device = fromEntryRef.device; in _EntryMoved()
1135 &fromEntryRef)) { in _EntryMoved()
1141 ":%" B_PRIdINO "\n", this, fromEntryRef.device, fromEntryRef.directory, in _EntryMoved()
1142 fromEntryRef.name, toEntryRef.device, toEntryRef.directory, in _EntryMoved()
[all …]
/haiku/src/kits/tracker/
H A DVirtualDirectoryPoseView.cpp388 NotOwningEntryRef fromEntryRef; in _EntryMoved() local
394 || message->FindInt32("device", &fromEntryRef.device) != B_OK in _EntryMoved()
395 || message->FindInt64("from directory", &fromEntryRef.directory) != B_OK in _EntryMoved()
397 || message->FindString("from name", (const char**)&fromEntryRef.name) in _EntryMoved()
403 toEntryRef.device = fromEntryRef.device; in _EntryMoved()
409 fromEntryRef, message->GetString("from path", NULL), false); in _EntryMoved()
/haiku/src/tests/kits/storage/testapps/
H A DPathMonitorTest2.cpp378 NotOwningEntryRef fromEntryRef; in Matches() local
384 || message.FindInt32("device", &fromEntryRef.device) in Matches()
387 &fromEntryRef.directory) != B_OK in Matches()
391 (const char**)&fromEntryRef.name) != B_OK in Matches()
396 toEntryRef.device = fromEntryRef.device; in Matches()
399 && fromEntryRef == fFromEntryRef; in Matches()