Searched refs:refs (Results 1 - 25 of 38) sorted by relevance

12

/haiku-fatelf/src/add-ons/tracker/filetype/
H A DFileType.cpp14 process_refs(entry_ref dir, BMessage* refs, void* /*reserved*/) argument
16 be_roster->Launch("application/x-vnd.haiku-filetypes", refs);
/haiku-fatelf/headers/os/add-ons/tracker/
H A DTrackerAddOn.h11 extern "C" void process_refs(entry_ref directory, BMessage* refs,
/haiku-fatelf/headers/private/shared/
H A DTrackerAddOnAppLaunch.h17 process_refs(entry_ref directory, BMessage* refs, void* reserved) argument
25 // The "refs" BMessage is a standard B_REFS_RECEIVED message whose
26 // "refs" array contains the entry_refs of the selected files.
29 refs->AddRef("dir_ref", &directory);
32 // It could be useful to know if an application got its refs as a
55 status = be_roster->Launch(&addonRef, refs);
66 be_roster->Launch(appInfo.signature, refs);
/haiku-fatelf/src/preferences/filetypes/
H A DFileTypeWindow.h25 FileTypeWindow(BPoint position, const BMessage& refs);
32 BString _Title(const BMessage& refs);
33 void _SetTo(const BMessage& refs);
H A DFileTypeWindow.cpp50 FileTypeWindow::FileTypeWindow(BPoint position, const BMessage& refs) argument
131 _SetTo(refs);
142 FileTypeWindow::_Title(const BMessage& refs) argument
147 if (refs.FindRef("refs", 1, &ref) == B_OK) {
155 for (int32 i = 0; refs.FindRef("refs", i, &ref) == B_OK; i++) {
175 } else if (refs.FindRef("refs", 0, &ref) == B_OK) {
186 FileTypeWindow::_SetTo(const BMessage& refs) argument
[all...]
H A DFileTypes.cpp213 while (message->FindRef("refs", index++, &ref) == B_OK) {
236 message->RemoveData("refs", --index);
242 message->ReplaceRef("refs", index - 1, &ref);
247 message->RemoveData("refs", --index);
249 // There are some refs left that want to be handled by the type window
260 if (message->FindRef("refs", &ref) != B_OK)
263 // There are some refs left that want to be handled by the type window
289 BMessage refs; local
309 refs.AddRef("refs",
[all...]
H A DApplicationTypesWindow.cpp398 message->AddRef("refs", &ref);
414 message->AddRef("refs", &directoryRef);
498 BMessage refs(B_REFS_RECEIVED);
499 refs.AddRef("refs", &ref);
501 be_app->PostMessage(&refs);
/haiku-fatelf/src/apps/packageinstaller/
H A DPackageWindow.h21 PackageWindow(const entry_ref *refs);
/haiku-fatelf/src/apps/mediaplayer/playlist/
H A DFilePlaylistItem.cpp428 FilePlaylistItem::_MoveIntoTrash(vector<entry_ref>* refs, argument
432 status_t err = find_directory(B_TRASH_DIRECTORY, (*refs)[0].device,
447 for (vector<entry_ref>::size_type i = 0; i < refs->size(); i++) {
448 BEntry entry(&(*refs)[i]);
452 (*refs)[i].name, strerror(err));
457 (*namesInTrash)[i] = (*refs)[i].name;
463 (*namesInTrash)[i] = (*refs)[i].name;
491 FilePlaylistItem::_RestoreFromTrash(vector<entry_ref>* refs, argument
495 status_t err = find_directory(B_TRASH_DIRECTORY, (*refs)[0].device,
502 for (vector<entry_ref>::size_type i = 0; i < refs
[all...]
H A DFilePlaylistItem.h71 status_t _MoveIntoTrash(vector<entry_ref>* refs,
73 status_t _RestoreFromTrash(vector<entry_ref>* refs,
/haiku-fatelf/src/apps/musiccollection/
H A DMusicFileListView.h107 BMessage refs(B_REFS_RECEIVED);
108 _RecursiveAddRefs(refs, item);
109 be_roster->Launch("application/x-vnd.Haiku-MediaPlayer", &refs);
120 message.AddRef("refs", &(file->entry));
/haiku-fatelf/src/add-ons/tracker/iconvader/
H A DIconVader.cpp29 process_refs(entry_ref dir, BMessage* refs, void* /*reserved*/) argument
40 refs->PrintToStream();
42 status = refs->FindMessenger("TrackerViewToken", &msgr);
169 //be_roster->Launch("application/x-vnd.haiku-filetypes", refs);
/haiku-fatelf/data/etc/bash_completion.d/
H A Dgit300 git rev-parse --verify refs/stash >/dev/null 2>&1 && s="$"
315 printf "${1:- (%s)}" "$c${b##refs/heads/}${f:+ $f}$r$p"
516 refs/heads
523 n,refs/heads/*) is_hash=y; echo "${i#refs/heads/}" ;;
535 refs/tags
542 n,refs/tags/*) is_hash=y; echo "${i#refs/tags/}" ;;
554 local cur format refs
558 refs|ref
[all...]
/haiku-fatelf/src/bin/gdb/gdb/
H A Ddcache.c134 int refs; member in struct:dcache_block
230 db->refs++;
407 db->refs = 0;
572 paddr (p->addr), p->refs);
/haiku-fatelf/src/tests/kits/midi/midi_player_replacement/
H A DMidiPlayerView.cpp288 entry_ref refs; local
290 while (dir.GetNextRef(&refs) != B_ENTRY_NOT_FOUND)
293 Menu->AddItem(item = new BMenuItem(refs.name, msg));
/haiku-fatelf/src/apps/deskbar/
H A DBarApp.h135 virtual void RefsReceived(BMessage* refs);
/haiku-fatelf/src/kits/tracker/
H A DFSUtils.h191 // app, pase 0 in <application> and stuff all the document refs into
196 // runs the Open With window; pas a list of refs
242 status_t TrackerLaunch(const BMessage* refs, bool async,
244 status_t TrackerLaunch(const entry_ref* app, const BMessage* refs, bool async,
H A DFSUtils.cpp3163 TrackerOpenWith(const BMessage* refs) argument
3165 BMessage clone(*refs);
3178 const entry_ref* appRef, const BMessage* refs, bool openWithOK)
3182 task->AddMessage("refs", refs);
3214 SniffIfGeneric(const BMessage* refs) argument
3218 if (refs->FindRef("refs", index, &ref) != B_OK)
3225 _TrackerLaunchAppWithDocuments(const entry_ref* appRef, const BMessage* refs, argument
3234 error = be_roster->Launch(appRef, refs,
3177 AsynchLaunchBinder(void (*func)(const entry_ref*, const BMessage*, bool on), const entry_ref* appRef, const BMessage* refs, bool openWithOK) argument
3389 _TrackerLaunchDocuments(const entry_ref* , const BMessage* refs, bool openWithOK) argument
3586 TrackerLaunch(const entry_ref* appRef, const BMessage* refs, bool async, bool openWithOK) argument
3611 TrackerLaunch(const BMessage* refs, bool async, bool openWithOK) argument
3622 LaunchBrokenLink(const char* signature, const BMessage* refs) argument
[all...]
/haiku-fatelf/src/tools/docbook/libxslt/libxslt/
H A Dattributes.c495 xsltAttrElemPtr refs; local
513 refs = xsltGetSAS(style, tmp->set, tmp->ns);
514 if (refs == NULL) {
522 xsltResolveSASCallback(refs, style, name, ns, NULL);
526 xsltMergeAttrElemList(style, values, refs);
/haiku-fatelf/src/apps/diskprobe/
H A DDiskProbe.cpp350 while (message->FindRef("refs", index++, &ref) == B_OK) {
389 BMessage refs; local
409 refs.AddRef("refs", &ref);
412 RefsReceived(&refs);
/haiku-fatelf/src/add-ons/translators/hpgs/lib/
H A Dhpgsfont.h197 hpgs_font_glyph_ref *refs; member in struct:hpgs_font_glyph_data_st
H A Dhpgsfont.c312 glyph_data->refs = 0;
318 if (glyph_data->refs) free(glyph_data->refs);
323 if (HPGS_GROW_ARRAY_MIN_SIZE(glyph_data,hpgs_font_glyph_ref,refs,refs_sz,refs_alloc_sz,8)) return -1;
325 glyph_data->refs[glyph_data->refs_sz].matrix = *m;
326 glyph_data->refs[glyph_data->refs_sz].gid = gid;
2071 hpgs_matrix_concat(&mm,m,&glyph_data->refs[i].matrix);
2075 &mm,glyph_data->refs[i].gid);
/haiku-fatelf/src/kits/interface/textview_support/
H A DStyleBuffer.cpp103 if (fBuffer[index].refs < 1) {
104 fBuffer[index].refs = 0;
130 fBuffer[index].refs++;
137 fBuffer[index].refs--;
H A DStyleBuffer.h38 long refs; // reference count for this style member in struct:STEStyleRecord
/haiku-fatelf/src/tests/kits/app/broster/
H A DLaunchTesterHelper.h89 const entry_ref *refs, int32 count = 1);

Completed in 264 milliseconds

12