Searched refs:object (Results 101 - 125 of 228) sorted by path

12345678910

/haiku/headers/private/shared/
H A DWeakReferenceable.h22 WeakPointer(BWeakReferenceable* object);
71 BWeakReference(Type* object) argument
75 SetTo(object);
113 void SetTo(Type* object) argument
117 if (object != NULL)
118 fPointer = object->GetWeakPointer();
164 Type* object = static_cast<Type*>(fPointer->Get());
165 if (object == NULL)
176 Type* object = static_cast<Type*>(fPointer->Get());
177 return BReference<Type>(object, tru
[all...]
/haiku/headers/private/system/
H A Devent_queue_defs.h19 int32 object; member in struct:event_wait_info
H A Dsyscalls.h201 extern status_t _kern_start_watching_system(int32 object, uint32 flags,
203 extern status_t _kern_stop_watching_system(int32 object, uint32 flags,
H A Dsystem_info.h13 // team creation or deletion; object == -1; either one also triggers on
19 // object == team ID or -1 for all teams
55 status_t __start_watching_system(int32 object, uint32 flags, port_id port,
57 status_t __stop_watching_system(int32 object, uint32 flags, port_id port,
/haiku/src/add-ons/kernel/bus_managers/acpi/
H A DACPIPrivate.h130 status_t (*evaluate_object)(acpi_handle handle, const char* object,
234 status_t evaluate_object(acpi_handle handle, const char* object,
H A DBusManager.cpp61 get_device_by_hid_callback(ACPI_HANDLE object, UINT32 depth, void* context, argument
67 TRACE("get_device_by_hid_callback %p, %d, %p\n", object, depth, context);
75 if (checkAndLogFailure(AcpiGetName(object, ACPI_FULL_PATHNAME, &buffer),
582 acpi_object_type object; local
583 buf.pointer = &object;
587 && object.object_type == ACPI_TYPE_INTEGER) {
589 *addr = object.integer.integer;
662 evaluate_object(acpi_handle handle, const char* object, acpi_objects *args, argument
671 status = AcpiEvaluateObject(handle, (ACPI_STRING)object,
H A DEmbeddedController.cpp75 acpi_object_type object; local
76 buf.pointer = &object;
79 // Assume that what we've been pointed at is an Integer object, or
83 if (object.object_type == ACPI_TYPE_INTEGER)
84 *number = object.integer.integer;
106 // The String object usually contains a fully-qualified path, so
/haiku/src/add-ons/kernel/bus_managers/usb/
H A DHub.cpp71 Object *object = GetStack()->GetObject(list->active->endpoint[0].handle); local
72 if (object && (object->Type() & USB_OBJECT_INTERRUPT_PIPE) != 0) {
73 fInterruptPipe = (InterruptPipe *)object;
79 object->SetBusy(false);
H A DStack.cpp46 TRACE_ERROR("failed to allocate object array\n");
112 Stack::GetUSBID(Object *object) argument
122 fObjectArray[id] = object;
137 Stack::PutUSBID(Object *object) argument
142 usb_id id = object->USBID();
148 if (fObjectArray[id] != object) {
149 TRACE_ERROR("tried to put an object with incorrect usb_id\n");
157 // Validate that no children of this object are still in the stack.
162 ASSERT_PRINT(fObjectArray[i]->Parent() != object,
178 TRACE_ERROR("tried to get object wit
[all...]
H A Dusb.cpp79 Object *object = gUSBStack->GetObjectNoLock((usb_id)id); local
80 if (!object || (object->Type() & USB_OBJECT_PIPE) == 0)
83 set_debug_variable("_usbPipe", (uint64)object);
203 ObjectBusyReleaser(Object* object) : fObject(object) {} argument
269 ObjectBusyReleaser object(gUSBStack->GetObject(dev));
270 if (!object.IsSet() || (object->Type() & USB_OBJECT_DEVICE) == 0)
272 Device *device = (Device *)object
750 set_feature_v2(const void *object, uint16 selector) argument
757 clear_feature_v2(const void *object, uint16 selector) argument
764 get_status_v2(const void *object, uint16 *status) argument
[all...]
H A Dusb_private.h136 usb_id GetUSBID(Object *object);
137 void PutUSBID(Object *object);
139 // This sets the object as busy; the caller must set it un-busy.
201 * This class manages a bus. It is created by the Stack object
289 virtual const char * TypeName() const { return "object"; }
/haiku/src/add-ons/kernel/busses/i2c/pch/
H A Dpch_i2c.cpp288 acpi_object_type object; local
289 buf.pointer = &object;
292 // Assume that what we've been pointed at is an Integer object, or
296 if (object.object_type == ACPI_TYPE_INTEGER)
297 *number = object.integer.integer;
306 pch_i2c_scan_bus_callback(acpi_handle object, uint32 nestingLevel, argument
310 TRACE("pch_i2c_scan_bus_callback %p\n", object);
314 status_t status = acpi_GetInteger(object, "_STA", &sta);
320 status = gACPI->walk_resources(object, (ACPI_STRING)"_CRS",
332 status = gACPI->ns_handle_to_pathname(object,
[all...]
H A Dpch_i2c.h50 acpi_status pch_i2c_scan_bus_callback(acpi_handle object, uint32 nestingLevel,
/haiku/src/add-ons/kernel/debugger/demangle/
H A Dgcc3+.cpp41 # define DELETE(object) DebugAlloc::destroy(object)
46 # define DELETE(object) delete object
63 // object classification
2321 // <special-name> ::= GV <object name> # Guard variable for one-time
2633 // local type or object
2665 // <ctor-dtor-name> ::= C1 # complete object constructor
2666 // ::= C2 # base object constructor
2667 // ::= C3 # complete object allocatin
[all...]
/haiku/src/add-ons/kernel/drivers/input/i2c_hid/
H A DDriver.cpp320 acpi_object_type* object = acpi_evaluate_dsm(handle, acpiHidGuid, 1, 1); local
321 if (object == NULL)
323 if (object->object_type != ACPI_TYPE_INTEGER) {
324 free(object);
328 uint32 descriptorAddress = object->integer.integer;
329 free(object);
/haiku/src/add-ons/kernel/drivers/power/acpi_ac/
H A Dacpi_ac.cpp56 acpi_object_type* object = (acpi_object_type*)buf.pointer; local
57 device->last_status = object->integer.integer;
/haiku/src/add-ons/kernel/drivers/power/acpi_battery/
H A Dacpi_battery.cpp89 acpi_object_type* object; local
97 object = (acpi_object_type*)buffer.pointer;
98 if (object->object_type != ACPI_TYPE_PACKAGE
99 || object->package.count < 4) {
104 pointer = object->package.objects;
139 acpi_object_type* object; local
156 object = (acpi_object_type*)buffer.pointer;
157 TRACE("ReadBatteryInfo %d %u\n", object->object_type,
158 object->package.count);
159 if (object
228 acpi_object_type object; local
[all...]
/haiku/src/add-ons/kernel/drivers/power/acpi_lid/
H A Dacpi_lid.cpp62 acpi_object_type* object = (acpi_object_type*)buf.pointer; local
63 device->last_status = object->integer.integer;
/haiku/src/add-ons/kernel/drivers/power/acpi_thermal/
H A Dacpi_thermal.c163 acpi_object_type object; local
166 buffer.pointer = &object;
167 buffer.length = sizeof(object);
178 (err == B_OK && object.object_type == ACPI_TYPE_INTEGER)
179 ? object.integer.integer : 0;
185 (err == B_OK && object.object_type == ACPI_TYPE_INTEGER)
186 ? object.integer.integer : 0;
192 (err == B_OK && object.object_type == ACPI_TYPE_INTEGER)
193 ? object.integer.integer : 0;
/haiku/src/add-ons/kernel/drivers/power/x86_cpuidle/
H A Dacpi_cpuidle.cpp267 acpi_cstate_add(acpi_object_type *object, CpuidleCstate *cState) argument
273 if (object->object_type != ACPI_TYPE_PACKAGE) {
274 dprintf("invalid _CST object\n");
278 if (object->data.package.count != 4) {
284 acpi_object_type * pointer = &object->data.package.objects[1];
299 pointer = &object->data.package.objects[2];
309 pointer = &object->data.package.objects[3];
318 pointer = &object->data.package.objects[0];
410 acpi_object_type *object = (acpi_object_type *)buffer.pointer; local
411 if (object
475 acpi_object_type *object = (acpi_object_type *)buffer.pointer; local
[all...]
/haiku/src/add-ons/kernel/drivers/sensor/acpi_als/
H A Dacpi_als.cpp66 acpi_object_type object; local
67 buf.pointer = &object;
70 // Assume that what we've been pointed at is an Integer object, or
75 if (object.object_type == ACPI_TYPE_INTEGER)
76 *number = object.integer.integer;
/haiku/src/add-ons/kernel/drivers/wmi/
H A DWMIACPI.cpp67 acpi_object_type* object = (acpi_object_type*)buffer.pointer; local
68 fWMIInfoCount = object->buffer.length / sizeof(guid_info);
69 guid_info *info = (guid_info*)object->buffer.buffer;
77 free(object);
159 acpi_object_type object; local
160 object.object_type = ACPI_TYPE_INTEGER;
161 object.integer.integer = instance;
162 acpi_objects objects = { 1, &object};
192 acpi_object_type object[2]; local
193 object[
220 acpi_object_type object[3]; local
288 acpi_object_type object; local
328 acpi_object_type object; local
[all...]
H A DWMIAsus.cpp136 acpi_object_type* object = (acpi_object_type*)outBuffer.pointer;
138 if (object != NULL) {
139 if (object->object_type == ACPI_TYPE_INTEGER)
140 result = object->integer.integer;
141 free(object);
188 acpi_object_type* object = (acpi_object_type*)response.pointer; local
190 if (object != NULL) {
191 if (object->object_type == ACPI_TYPE_INTEGER)
192 result = object->integer.integer;
193 free(object);
[all...]
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DConnection.cpp442 object_wait_info object[2];
443 object[0].object = fWaitCancel;
444 object[0].type = B_OBJECT_TYPE_SEMAPHORE;
445 object[0].events = B_EVENT_ACQUIRE_SEMAPHORE;
447 object[1].object = fSocket;
448 object[1].type = B_OBJECT_TYPE_FD;
449 object[1].events = B_EVENT_READ;
452 object[
[all...]
H A DRPCCallbackServer.h56 static status_t ListenerThreadLauncher(void* object);
59 static status_t ConnectionThreadLauncher(void* object);

Completed in 140 milliseconds

12345678910