Searched refs:ref (Results 101 - 125 of 722) sorted by relevance

1234567891011>>

/haiku/src/apps/cortex/InfoView/
H A DLiveNodeInfoView.h61 const NodeRef *ref);
/haiku/src/apps/resedit/
H A DResWindow.h19 const entry_ref* ref = NULL);
/haiku/src/kits/shared/
H A DQueryFile.cpp26 BQueryFile::BQueryFile(const entry_ref& ref) argument
28 SetTo(ref);
63 BQueryFile::SetTo(const entry_ref& ref) argument
67 BNode node(&ref);
124 entry_ref ref; local
125 fStatus = entry.GetRef(&ref);
129 return SetTo(ref);
136 entry_ref ref; local
137 fStatus = get_ref_for_path(path, &ref);
141 return SetTo(ref);
219 WriteTo(const entry_ref& ref) argument
229 entry_ref ref; local
269 GetNextRef(entry_ref* ref) argument
[all...]
/haiku/src/servers/registrar/
H A DRosterAppInfo.h26 const entry_ref *ref, const char *signature);
H A DAppInfoList.cpp139 \param ref The entry_ref
141 \a ref is \c NULL or the list doesn't contain an info with
145 AppInfoList::InfoFor(const entry_ref *ref) const
147 return InfoAt(IndexOf(ref));
286 \param ref The entry_ref
287 \return The index of the found RosterAppInfo, or -1, if \a ref is
291 AppInfoList::IndexOf(const entry_ref *ref) const
293 if (ref) {
295 BEntry entry(ref, true);
298 realRef = *ref;
[all...]
/haiku/src/add-ons/tracker/mark_as/
H A DMarkAsRead.cpp20 entry_ref ref; local
21 for (int i = 0; message->FindRef("refs", i, &ref) == B_OK; i++) {
22 BNode node(&ref);
43 BMailDaemon().MarkAsRead(account, ref, read);
/haiku/src/preferences/mail/
H A DFilterList.h22 entry_ref ref; member in struct:FilterInfo
41 int32 InfoIndexFor(const entry_ref& ref) const;
45 BString SimpleName(const entry_ref& ref,
50 BString DescriptiveName(const entry_ref& ref,
H A DFilterList.cpp80 FilterList::InfoIndexFor(const entry_ref& ref) const
84 if (info.ref == ref)
100 FilterList::SimpleName(const entry_ref& ref, argument
103 return DescriptiveName(InfoIndexFor(ref), accountSettings, NULL);
121 FilterList::DescriptiveName(const entry_ref& ref, argument
125 return DescriptiveName(InfoIndexFor(ref), accountSettings, settings);
133 const entry_ref& ref = settings.AddOnRef(); local
134 int32 index = InfoIndexFor(ref);
177 entry.GetRef(&info.ref);
[all...]
/haiku/src/servers/bluetooth/
H A DDeviceManager.cpp35 entry_ref ref; local
41 if ((msg->FindInt32("device", &ref.device)!=B_OK)
42 || (msg->FindInt64("directory", &ref.directory)!=B_OK)
48 ref.set_name(name);
51 if (dir.SetTo(&ref) == B_OK) {
59 AddDevice(&ref);
103 entry_ref ref; local
105 while ((error = directory.GetNextRef(&ref)) == B_OK) {
107 AddDevice(&ref);
130 entry_ref ref; local
145 AddDevice(entry_ref* ref) argument
[all...]
/haiku/src/preferences/notifications/
H A DAppRefFilter.h15 virtual bool Filter(const entry_ref *ref,
/haiku/src/build/libbe/app/
H A DAppMisc.cpp22 \param ref A pointer to a pre-allocated entry_ref to be initialized
27 - \c B_BAD_VALUE: \c NULL \a ref.
31 get_app_ref(entry_ref *ref, bool traverse) argument
33 // return get_app_ref(B_CURRENT_TEAM, ref, traverse);
/haiku/src/add-ons/print/transports/print_to_file/
H A Dprint_transport.cpp55 entry_ref ref; local
56 if (selector->Go(&ref) != B_OK) {
67 BFile *file = new BFile(&ref, B_WRITE_ONLY | B_CREATE_FILE | B_ERASE_FILE);
81 path.SetTo(&ref);
/haiku/src/apps/icon-o-matic/document/savers/
H A DSimpleFileSaver.h18 const entry_ref& ref);
H A DAttributeSaver.h20 AttributeSaver(const entry_ref& ref,
/haiku/src/apps/diskprobe/
H A DFileWindow.cpp28 FileWindow::FileWindow(BRect rect, entry_ref *ref, const BMessage *settings) argument
29 : ProbeWindow(rect, ref)
34 BEntry entry(ref);
38 BPath path(ref);
92 fProbeView = new ProbeView(ref, NULL, settings);
113 FileWindow::Contains(const entry_ref &ref, const char *attribute) argument
118 return ref == Ref();
/haiku/src/servers/media_addon/
H A DMediaFilePlayer.cpp31 entry_ref ref; local
32 if (BMediaFiles().GetRefFor(media_type, media_name, &ref) != B_OK
33 || !BEntry(&ref).Exists())
40 if (*(player->Ref()) == ref) {
51 player = new MediaFilePlayer(media_type, media_name, &ref);
62 const char* media_name, entry_ref* ref)
66 fRef(*ref),
61 MediaFilePlayer(const char* media_type, const char* media_name, entry_ref* ref) argument
/haiku/src/tests/kits/app/broster/
H A DGetAppInfoTester.cpp47 // get port and ref
49 entry_ref ref; local
50 runner.GetRef(&ref);
59 //printf(" ref: (%ld, %lld, `%s') vs (%ld, %lld, `%s')\n",
60 //info.ref.device, info.ref.directory, info.ref.name,
61 //ref.device, ref.directory, ref
143 entry_ref ref; local
162 entry_ref ref; local
183 entry_ref ref; local
[all...]
/haiku/headers/os/app/
H A DRoster.h26 entry_ref ref; member in struct:app_info
63 bool IsRunning(entry_ref* ref) const;
66 team_id TeamFor(entry_ref* ref) const;
75 status_t GetAppInfo(entry_ref* ref,
85 status_t FindApp(entry_ref* ref, entry_ref* app) const;
110 status_t Launch(const entry_ref* ref,
113 status_t Launch(const entry_ref* ref,
116 status_t Launch(const entry_ref* ref, int argc,
153 const entry_ref* ref, uint32 flags,
171 bool _IsAppPreRegistered(const entry_ref* ref,
[all...]
/haiku/src/kits/storage/
H A DEntry.cpp56 entry_ref::entry_ref(const entry_ref& ref) argument
58 device(ref.device),
59 directory(ref.directory),
62 set_name(ref.name);
90 entry_ref::operator==(const entry_ref& ref) const
92 return (device == ref.device
93 && directory == ref.directory
94 && (name == ref.name
95 || (name != NULL && ref.name != NULL
96 && strcmp(name, ref
108 operator =(const entry_ref& ref) argument
142 BEntry(const entry_ref* ref, bool traverse) argument
231 SetTo(const entry_ref* ref, bool traverse) argument
802 get_ref_for_path(const char* path, entry_ref* ref) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DFDManager.cpp89 FDManager::SetDirectory(BDirectory* directory, const node_ref* ref) argument
91 status_t error = directory->SetTo(ref);
95 error = directory->SetTo(ref);
103 FDManager::SetEntry(BEntry* entry, const entry_ref* ref) argument
105 status_t error = entry->SetTo(ref);
109 error = entry->SetTo(ref);
145 FDManager::SetNode(BNode* node, const entry_ref* ref) argument
147 status_t error = node->SetTo(ref);
151 error = node->SetTo(ref);
H A DSecurityContext.h53 status_t Init(const char* name, const node_ref& ref,
97 status_t AddShare(const char* name, const node_ref& ref,
108 status_t SetNodePermissions(const node_ref& ref,
112 void ClearNodePermissions(const node_ref& ref,
116 Permissions GetNodePermissions(const node_ref& ref,
126 node_ref* ref = NULL);
127 status_t _AddNodePath(const node_ref& ref,
130 const node_ref& ref);
132 node_ref* ref);
/haiku/src/build/libbe/storage/
H A DEntry.cpp97 \param ref a reference to an entry_ref to copy
99 entry_ref::entry_ref(const entry_ref &ref) argument
101 device(ref.device),
102 directory(ref.directory),
105 set_name(ref.name);
149 entry_ref::operator==(const entry_ref &ref) const
151 return device == ref.device
152 && directory == ref.directory
153 && (name == ref.name
154 || (name != NULL && ref
176 operator =(const entry_ref &ref) argument
275 BEntry(const entry_ref *ref, bool traverse) argument
426 SetTo(const entry_ref *ref, bool traverse) argument
1116 get_ref_for_path(const char *path, entry_ref *ref) argument
[all...]
/haiku/src/add-ons/input_server/devices/virtualkeyboard/
H A DVirtualKeyboardWindow.cpp98 entry_ref ref; local
100 while (directory.GetNextRef(&ref) == B_OK) {
101 if (menu->FindItem(ref.name) != NULL)
105 subdirectory.SetTo(&ref);
107 BMenu* submenu = new BMenu(ref.name);
112 //message->AddRed("ref",&ref);
113 menu->AddItem(new BMenuItem(ref.name, NULL));
128 entry_ref ref; local
131 while (directory.GetNextRef(&ref)
[all...]
/haiku/src/bin/desklink/
H A Ddesklink.cpp69 entry_ref ref; local
70 if (get_ref_for_path(argv[0], &ref) == B_OK) {
71 deskbar.AddItem(&ref);
127 entry_ref ref; local
130 entry.GetRef(&ref);
132 if (be_roster->FindApp(argv[i], &ref) != B_OK) {
141 err = deskbar.AddItem(&ref);
146 &ref, ref.name, titleList, actionList));
/haiku/headers/build/os/app/
H A DRoster.h45 entry_ref ref; member in struct:app_info
85 bool IsRunning(entry_ref *ref) const;
87 team_id TeamFor(entry_ref *ref) const;
93 status_t GetAppInfo(entry_ref *ref, app_info *info) const;
99 status_t FindApp(entry_ref *ref, entry_ref *app) const;
120 status_t Launch(const entry_ref *ref, const BMessage *initialMessage = 0,
122 status_t Launch(const entry_ref *ref, const BList *messageList,
124 status_t Launch(const entry_ref *ref, int argc, const char * const *args,
151 status_t AddApplication(const char *mimeSig, const entry_ref *ref,
161 bool IsAppPreRegistered(const entry_ref *ref, team_i
[all...]

Completed in 87 milliseconds

1234567891011>>