Searched refs:owner (Results 1 - 25 of 236) sorted by last modified time

12345678910

/haiku/src/apps/mediaplayer/
H A DController.cpp52 TrackSupplierReleaser(PlaylistItemRef& owner) argument
54 fOwner(owner),
/haiku/src/add-ons/kernel/network/stack/
H A Dnet_socket.cpp60 team_id owner; member in struct:net_socket_private
86 owner(-1),
334 socket->family, socket->type, socket->protocol, socket->owner,
360 kprintf(" owner: %" B_PRId32 "\n", socket->owner);
387 kprintf("address kind owner protocol module_info parent\n");
429 socket->owner = team_get_current_team_id();
583 stat->owner = socket->owner;
653 socket->owner
[all...]
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DInode.h125 uint64 owner; member in struct:BlockInfoV5
/haiku/src/system/kernel/device_manager/
H A Ddevice_manager.cpp71 device_node* owner; // associated node; NULL for temporary allocation member in struct:io_resource_info
315 IORequestOwner* owner = (IORequestOwner*)parse_expression(argv[1]); local
316 owner->Dump();
2472 "Dump an I/O request owner",
2473 "<owner>\n"
2474 "Dumps I/O request owner at address <owner>.\n", 0);
/haiku/src/system/kernel/
H A DDPC.cpp27 FunctionDPCCallback::FunctionDPCCallback(DPCQueue* owner) argument
29 fOwner(owner)
H A Dsem.cpp62 // write access to sem_entry::owner/team_link.
63 // * sem_entry::lock: Protects all sem_entry members. owner, team_link
99 team_id owner; member in struct:sem_entry::__anon1::__anon2
138 team_id owner = -1; local
143 if (!strcmp(argv[1], "team") || !strcmp(argv[1], "owner"))
144 owner = strtoul(argv[2], NULL, 0);
150 owner = strtoul(argv[1], NULL, 0);
160 || (owner != -1 && sem->u.used.owner != owner))
469 create_sem_etc(int32 count, const char* name, team_id owner) argument
[all...]
H A Dteam.cpp3658 AssociatedData::OwnerDeleted(AssociatedDataOwner* owner) argument
3665 mutex_init(&fLock, "associated data owner");
3715 // move all data to a temporary list and unset the owner
3740 data object is already associated with another owner.
/haiku/src/add-ons/kernel/generic/tty/
H A Dtty.cpp195 Request::Init(RequestOwner* owner, tty_cookie* cookie, size_t bytesNeeded) argument
197 fOwner = owner;
230 kprintf("%s owner: %p\n", prefix, fOwner);
/haiku/src/kits/media/experimental/
H A DAdapterIO.cpp21 RelativePositionIO(BAdapterIO* owner, BPositionIO* buffer, argument
25 fOwner(owner),
/haiku/src/apps/powerstatus/
H A DExtendedInfoWindow.cpp215 BatteryTab::Select(BView* owner) argument
217 BTab::Select(owner);
222 BatteryTab::DrawFocusMark(BView* owner, BRect frame) argument
231 owner->SetHighUIColor(B_KEYBOARD_NAVIGATION_COLOR);
232 owner->StrokeLine(pt1, pt2);
237 BatteryTab::DrawLabel(BView* owner, BRect frame) argument
248 fBatteryView->DrawTo(owner, rect);
/haiku/src/apps/icon-o-matic/gui/
H A DStyleListView.cpp79 virtual void DrawItem(BView* owner, BRect itemFrame, bool even) argument
81 SimpleItem::DrawBackground(owner, itemFrame, even);
84 SimpleItem::DrawItem(owner, itemFrame.OffsetByCopy(offset, 0), even);
95 rgb_color lowColor = owner->LowColor();
105 owner->SetHighColor(tint_color(owner->LowColor(), markRectBorderTint));
106 owner->StrokeRect(markRect);
108 owner->SetHighColor(tint_color(owner->LowColor(), markRectFillTint));
109 owner
[all...]
H A DPathListView.cpp73 virtual void DrawItem(BView* owner, BRect itemFrame, bool even) argument
75 SimpleItem::DrawBackground(owner, itemFrame, even);
78 SimpleItem::DrawItem(owner, itemFrame.OffsetByCopy(offset, 0), even);
89 rgb_color lowColor = owner->LowColor();
99 owner->SetHighColor(tint_color(owner->LowColor(), markRectBorderTint));
100 owner->StrokeRect(markRect);
102 owner->SetHighColor(tint_color(owner->LowColor(), markRectFillTint));
103 owner
[all...]
/haiku/src/apps/icon-o-matic/generic/gui/
H A DListViews.cpp57 SimpleItem::DrawItem(BView* owner, BRect itemFrame, bool even) argument
59 DrawBackground(owner, itemFrame, even);
63 owner->SetHighUIColor(B_LIST_SELECTED_ITEM_TEXT_COLOR);
65 owner->SetHighUIColor(B_LIST_ITEM_TEXT_COLOR);
68 owner->GetFontHeight(&fh);
72 owner->TruncateString(&truncatedString, B_TRUNCATE_MIDDLE,
82 owner->DrawString(truncatedString.String(), textPoint);
87 SimpleItem::DrawBackground(BView* owner, BRect itemFrame, bool even) argument
106 owner->SetLowColor(bgColor);
107 owner
[all...]
/haiku/src/tests/system/network/tcp_shell/
H A Dtcp_shell.cpp66 team_id owner; member in struct:net_socket_private
/haiku/src/preferences/network/
H A DInterfaceListItem.cpp64 InterfaceListItem::DrawItem(BView* owner, BRect bounds, bool complete) argument
66 owner->PushState();
68 rgb_color lowColor = owner->LowColor();
72 owner->SetHighColor(ui_color(B_LIST_SELECTED_BACKGROUND_COLOR));
73 owner->SetLowColor(owner->HighColor());
75 owner->SetHighColor(lowColor);
77 owner->FillRect(bounds);
95 owner->SetDrawingMode(B_OP_ALPHA);
96 owner
138 Update(BView* owner, const BFont* font) argument
[all...]
/haiku/src/kits/interface/
H A DColumnListView.cpp327 bool owner);
/haiku/src/apps/bootmanager/
H A DDrivesPage.cpp47 virtual void DrawItem(BView* owner, BRect frame,
49 virtual void Update(BView* owner, const BFont* font);
122 DriveItem::DrawItem(BView* owner, BRect frame, bool complete) argument
124 owner->PushState();
125 owner->SetDrawingMode(B_OP_ALPHA);
129 owner->SetHighColor(ui_color(B_LIST_SELECTED_BACKGROUND_COLOR));
130 owner->SetLowColor(owner->HighColor());
132 owner->SetHighColor(owner
226 Update(BView* owner, const BFont* font) argument
[all...]
/haiku/src/servers/launch/
H A DLaunchDaemon.cpp219 _FindExternalEventSource(const char* owner,
693 const char* name = message->GetString("owner");
1023 message.AddString("owner", eventSource->OwnerName());
1051 const char* ownerName = message->GetString("owner");
1097 const char* ownerName = message->GetString("owner");
1133 const char* ownerName = message->GetString("owner");
1157 const char* ownerName = message->GetString("owner");
1923 LaunchDaemon::_FindExternalEventSource(const char* owner, const char* name) const argument
1935 if (owner == NULL)
1939 eventName.Prepend(get_leaf(owner));
[all...]
/haiku/src/apps/mail/
H A DEnclosures.cpp420 TListItem::Update(BView* owner, const BFont* font) argument
422 BListItem::Update(owner, font);
433 TListItem::DrawItem(BView *owner, BRect frame, bool /* complete */) argument
442 owner->SetHighColor(kHighlight);
443 owner->SetLowColor(kHighlight);
444 owner->FillRect(r);
493 owner->SetDrawingMode(B_OP_ALPHA);
494 owner->SetBlendingMode(B_PIXEL_ALPHA, B_ALPHA_OVERLAY);
495 owner->DrawBitmap(&iconBitmap, iconFrame);
496 owner
[all...]
/haiku/headers/private/kernel/
H A Dthread_types.h166 void SetOwner(AssociatedDataOwner* owner) argument
167 { fOwner = owner; }
169 virtual void OwnerDeleted(AssociatedDataOwner* owner);
/haiku/src/system/libroot/posix/pthread/
H A Dpthread_rwlock.cpp48 int32_t owner; member in struct:SharedRWLock
54 owner = -1;
77 owner = find_thread(NULL);
83 if (find_thread(NULL) == owner) {
84 owner = -1;
94 int32_t owner; member in struct:LocalRWLock
100 // writer_count includes the write lock owner as well as waiting
107 owner = -1;
166 owner = find_thread(NULL);
177 if (find_thread(NULL) == owner) {
[all...]
H A Dpthread_mutex.cpp37 mutex->owner = -1;
57 if (mutex->owner == thisThread) {
95 assert(mutex->owner == -1);
96 mutex->owner = thisThread;
164 if (mutex->owner != find_thread(NULL))
173 mutex->owner = -1;
H A Dpthread_cond.cpp63 if (mutex->owner != find_thread(NULL)) {
64 // calling thread isn't mutex owner
80 mutex->owner = -1;
/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dmutex.h54 mutex->u.mutex_.owner = find_thread(NULL);
69 mutex->u.mutex_.owner = find_thread(NULL);
86 mutex->u.mutex_.owner = -1;
108 return mutex->u.mutex_.owner == find_thread(NULL);
/haiku/src/libs/compat/freebsd_network/
H A Dmutex.c31 mutex->u.mutex_.owner = -1;

Completed in 149 milliseconds

12345678910