Searched refs:self (Results 26 - 50 of 126) sorted by relevance

123456

/haiku/headers/private/kernel/platform/efi/protocol/
H A Dsimple-text-output.h116 efi_status (*Reset) (struct efi_simple_text_output_protocol* self,
119 efi_status (*OutputString) (struct efi_simple_text_output_protocol* self,
122 efi_status (*TestString) (struct efi_simple_text_output_protocol* self,
125 efi_status (*QueryMode) (struct efi_simple_text_output_protocol* self,
128 efi_status (*SetMode) (struct efi_simple_text_output_protocol* self,
131 efi_status (*SetAttribute) (struct efi_simple_text_output_protocol* self,
134 efi_status (*ClearScreen) (struct efi_simple_text_output_protocol* self) EFIAPI;
136 efi_status (*SetCursorPosition) (struct efi_simple_text_output_protocol* self,
139 efi_status (*EnableCursor) (struct efi_simple_text_output_protocol* self,
H A Ddisk-io.h22 efi_status (*ReadDisk)(efi_disk_io_protocol* self,
25 efi_status (*WriteDisk)(efi_disk_io_protocol* self,
H A Dsimple-file-system.h19 efi_status (*OpenVolume) (struct efi_simple_file_system_protocol* self,
H A Dgraphics-output.h62 efi_status (*QueryMode) (struct efi_graphics_output_protocol* self,
66 efi_status (*SetMode) (struct efi_graphics_output_protocol* self,
69 efi_status (*Blt) (struct efi_graphics_output_protocol* self,
H A Dedid.h29 efi_status (*GetEdid) (struct efi_edid_override_protocol* self, efi_handle* child,
/haiku/src/apps/debugger/user_interface/gui/utility_windows/
H A DExpressionPromptWindow.cpp37 ExpressionPromptWindow* self = new ExpressionPromptWindow(addTarget, local
41 self->_Init();
43 delete self;
47 return self;
H A DBreakpointEditWindow.cpp57 BreakpointEditWindow* self = new BreakpointEditWindow( local
61 self->_Init();
63 delete self;
67 return self;
H A DSignalDispositionEditWindow.cpp59 SignalDispositionEditWindow* self = new SignalDispositionEditWindow( local
63 self->_Init();
65 delete self;
69 return self;
H A DConnectionConfigWindow.cpp55 ConnectionConfigWindow* self = new ConnectionConfigWindow(); local
58 self->_Init();
60 delete self;
64 return self;
H A DVariableEditWindow.cpp59 VariableEditWindow* self = new VariableEditWindow(initialValue, node, local
63 self->_Init();
65 delete self;
69 return self;
H A DStartTeamWindow.cpp51 StartTeamWindow* self = new StartTeamWindow(hostInterface); local
54 self->_Init();
56 delete self;
60 return self;
/haiku/headers/os/kernel/
H A Dimage.h67 void initialize_before(image_id self);
68 void initialize_after(image_id self);
69 void terminate_before(image_id self);
70 void terminate_after(image_id self);
/haiku/src/apps/showimage/
H A DImageCache.cpp186 ImageCache* self = (ImageCache*)_self; local
191 self->fLocker.Lock();
192 if (self->fQueue.empty()) {
193 self->fLocker.Unlock();
197 QueueEntry* entry = *self->fQueue.begin();
200 self->fQueue.pop_front();
201 self->fLocker.Unlock();
204 entry->status = self->_RetrieveImage(entry, &cacheEntry);
206 self->fLocker.Lock();
207 self
[all...]
/haiku/src/servers/launch/
H A DWorker.cpp90 Worker* self = (Worker*)_self; local
91 status_t status = self->Process();
92 delete self;
H A DWorker.h31 static status_t _Process(void* self);
/haiku/src/tests/system/libroot/posix/
H A Dpthread_signal_test.cpp16 static pthread_key_t self; variable
41 int *i = (int*)pthread_getspecific(self);
90 pthread_setspecific(self, &i);
151 pthread_key_create(&self, NULL);
/haiku/src/apps/debugger/user_interface/gui/team_settings_window/
H A DExceptionStopConfigView.cpp48 ExceptionStopConfigView* self = new ExceptionStopConfigView( local
52 self->_Init();
54 delete self;
58 return self;
/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/dev/rtwn/usb/
H A Drtwn_usb_attach.c92 rtwn_usb_match(device_t self) argument
94 struct usb_attach_arg *uaa = device_get_ivars(self);
378 rtwn_usb_attach(device_t self) argument
380 struct usb_attach_arg *uaa = device_get_ivars(self);
381 struct rtwn_usb_softc *uc = device_get_softc(self);
386 device_set_usb_desc(self);
388 sc->sc_dev = self;
389 ic->ic_name = device_get_nameunit(self);
420 rtwn_usb_detach(self); /* failure */
425 rtwn_usb_detach(device_t self) argument
447 rtwn_usb_suspend(device_t self) argument
457 rtwn_usb_resume(device_t self) argument
[all...]
/haiku/src/kits/shared/
H A DThread.cpp69 SimpleThread* self = static_cast<SimpleThread*>(castToThis); local
70 self->Run();
/haiku/src/tests/add-ons/kernel/file_systems/consistency_check/
H A DAdaptiveBuffering.h28 static status_t _Writer(void* self);
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DStackTraceView.cpp129 StackTraceView* self = new StackTraceView(listener); local
132 self->_Init();
134 delete self;
138 return self;
/haiku/src/system/kernel/device_manager/
H A DIOSchedulerSimple.h62 static status_t _SchedulerThread(void* self);
64 static status_t _RequestNotifierThread(void* self);
/haiku/src/tests/servers/input/view_input_device/
H A DViewInputDevice.cpp87 ViewInputDevice *self = (ViewInputDevice*)arg; local
88 self->_WatchPort();
/haiku/src/system/libnetwork/netresolv/resolv/
H A Dres_state.c81 pthread_t self = pthread__self(); local
82 int len = snprintf(buf, sizeof(buf), "%p: %s %p\n", self, msg, p);
/haiku/src/add-ons/kernel/file_systems/packagefs/indices/
H A DAttributeIndex.cpp52 AttributeIndexTreeValue* self = (AttributeIndexTreeValue*)malloc( local
54 if (self == NULL)
57 self->owner = owner;
58 self->attributeCookie = attributeCookie;
59 self->length = length;
60 return self;

Completed in 129 milliseconds

123456