HomeSort by: relevance | last modified time | path
    Searched defs:Handle (Results 1 - 21 of 21) sorted by relevancy

  /src/sys/external/bsd/gnu-efi/dist/lib/
hw.c 52 EFI_HANDLE Handle;
58 Status = uefi_call_wrapper(BS->LocateDevicePath, 3, Protocol, &DevicePath, &Handle);
64 Status = uefi_call_wrapper(BS->LocateDevicePath, 3, &DeviceIoProtocol, &DevicePath, &Handle);
66 Status = uefi_call_wrapper(BS->HandleProtocol, 3, Handle, &DeviceIoProtocol, (VOID*)GlobalIoFncs);
  /src/sys/external/bsd/acpica/dist/compiler/
aslascii.c 164 FILE *Handle,
169 FILE *Handle,
183 * within comments. Note: does not handle nested comments and does
184 * not handle comment delimiters within string literals. However,
200 FILE *Handle;
205 Handle = fopen (Filename, "rb");
206 if (!Handle)
217 while (fread (&Byte, 1, 1, Handle) == 1)
227 FlConsumeAnsiComment (Handle, &Status);
232 FlConsumeNewComment (Handle, &Status)
    [all...]
asltypes.h 246 FILE *Handle;
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_utils.cc 93 Report("XRay: cannot get basic info about current process handle: %s\n",
104 // Duplicate the handle since __sanitizer_publish_data consumes it and
106 zx_handle_t Handle;
107 Status =_zx_handle_duplicate(Vmo, ZX_RIGHT_SAME_RIGHTS, &Handle);
109 Report("XRay: cannot duplicate VMO handle: %s\n",
117 __sanitizer_publish_data(ProfileSinkName, Handle);
  /src/sys/external/bsd/acpica/dist/namespace/
nsinit.c 270 ACPI_HANDLE Handle;
330 Status = AcpiGetHandle (NULL, "\\_SB", &Handle);
334 Info.EvaluateInfo->PrefixNode = Handle;
  /src/sys/external/bsd/acpica/dist/tools/acpiexec/
aeexec.c 213 ACPI_HANDLE Handle;
221 Status = AcpiGetHandle (NULL, "\\_GPE", &Handle);
234 Status = AcpiGetHandle (NULL, "\\GPE2", &Handle);
237 Status = AcpiGetType (Handle, &Type);
244 Status = AcpiInstallGpeBlock (Handle, &BlockAddress, 7, 8);
247 Status = AcpiInstallGpeHandler (Handle, 8,
251 Status = AcpiEnableGpe (Handle, 8);
266 Status = AcpiRemoveGpeHandler (Handle, 8, AeGpeHandler);
272 Status = AcpiGetHandle (NULL, "\\GPE3", &Handle);
275 Status = AcpiGetType (Handle, &Type)
    [all...]
aehandlers.c 678 ACPI_HANDLE Handle;
681 Status = AcpiGetHandle (NULL, "\\_TZ.TZ1", &Handle);
684 Status = AcpiInstallNotifyHandler (Handle, ACPI_ALL_NOTIFY,
688 Status = AcpiInstallNotifyHandler (Handle, ACPI_ALL_NOTIFY,
692 Status = AcpiRemoveNotifyHandler (Handle, ACPI_ALL_NOTIFY,
696 Status = AcpiRemoveNotifyHandler (Handle, ACPI_ALL_NOTIFY,
700 Status = AcpiInstallNotifyHandler (Handle, ACPI_ALL_NOTIFY,
704 Status = AcpiInstallNotifyHandler (Handle, ACPI_ALL_NOTIFY,
709 Status = AcpiGetHandle (NULL, "\\_PR.CPU0", &Handle);
712 Status = AcpiInstallNotifyHandler (Handle, ACPI_ALL_NOTIFY
    [all...]
aetests.c 192 ACPI_HANDLE Handle;
203 Status = AcpiGetHandle (NULL, "\\", &Handle);
214 Status = AcpiGetHandle (NULL, "\\_SB_", &Handle);
217 Status = AcpiUnloadParentTable (Handle);
235 Status = AcpiGetHandle (NULL, "\\_T99", &Handle);
238 Status = AcpiUnloadParentTable (Handle);
380 Status = AcpiGetHandle (NULL, "\\_SB", &Handle);
383 Status = AcpiSetupGpeForWake (Handle, NULL, 5);
389 Status = AcpiSetupGpeForWake (Handle, NULL, 6);
395 Status = AcpiSetupGpeForWake (Handle, NULL, 9)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_addrhashmap.h 31 // Map::Handle h(&m, addr);
38 // Map::Handle h(&m, addr, true);
39 // this will remove the data from the map in Handle dtor
68 class Handle {
70 Handle(AddrHashMap<T, kSize> *map, uptr addr);
71 Handle(AddrHashMap<T, kSize> *map, uptr addr, bool remove);
72 Handle(AddrHashMap<T, kSize> *map, uptr addr, bool remove, bool create);
74 ~Handle();
94 friend class Handle;
97 void acquire(Handle *h)
    [all...]
  /src/sys/arch/macppc/dev/
adbvar.h 57 typedef void **Handle;
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_chained_origin_depot.cc 88 struct Handle {
90 Handle() : node_(nullptr) {}
91 explicit Handle(ChainedOriginDepotNode *node) : node_(node) {}
98 Handle get_handle() { return Handle(this); }
100 typedef Handle handle_type;
112 ChainedOriginDepotNode::Handle h = chainedOriginDepot.Put(desc, &inserted);
  /src/sys/external/bsd/gnu-efi/dist/inc/protocol/
vgaclass.h 48 EFI_HANDLE Handle;
  /src/sys/external/bsd/acpica/dist/os_specific/service_layers/
oswintbl.c 427 HKEY Handle = NULL;
438 /* Get a handle to the table key */
471 0L, KEY_READ, &Handle);
517 WinStatus = RegEnumKey(Handle, i, KeyBuffer, sizeof(KeyBuffer));
524 WinStatus = RegOpenKey(Handle, KeyBuffer, &SubKey);
533 RegCloseKey(Handle);
534 Handle = SubKey;
543 WinStatus = RegEnumValue(Handle, i, KeyBuffer, &NameSize, NULL,
561 WinStatus = RegQueryValueEx(Handle, KeyBuffer, NULL, NULL,
582 WinStatus = RegQueryValueEx(Handle, KeyBuffer, NULL, NULL
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerUtilFuchsia.cpp 56 // Helper function to handle Zircon syscall failures.
217 ~ScopedHandle() { _zx_handle_close(Handle); }
218 zx_handle_t Handle = ZX_HANDLE_INVALID;
226 ExitOnErr(_zx_port_create(0, &Port.Handle), "_zx_port_create");
229 ExitOnErr(_zx_task_bind_exception_port(Self, Port.Handle, kFuzzingCrash,
237 ExitOnErr(_zx_port_wait(Port.Handle, ZX_TIME_INFINITE, &Packet),
248 ZX_RIGHT_SAME_RIGHTS, &Thread.Handle),
252 ExitOnErr(_zx_thread_read_state(Thread.Handle, ZX_THREAD_STATE_GENERAL_REGS,
281 ExitOnErr(_zx_thread_write_state(Thread.Handle, ZX_THREAD_STATE_GENERAL_REGS,
285 ExitOnErr(_zx_task_resume_from_exception(Thread.Handle, Port.Handle, 0)
    [all...]
  /src/sys/arch/mac68k/mac68k/
macrom.h 83 typedef void **Handle;
127 Handle GetResource(u_int, short);
  /src/sys/external/bsd/gnu-efi/dist/inc/
libsmbios.h 63 UINT8 Handle[2];
efishell.h 57 SHELL_FILE_HANDLE Handle;
  /src/sys/external/bsd/acpica/dist/debugger/
dbdisply.c 793 * PARAMETERS: ObjectArg - User entered NS node handle
806 ACPI_HANDLE Handle;
813 Handle = ACPI_TO_POINTER (Arg);
815 Status = AcpiGetObjectInfo (Handle, &Info);
  /src/sys/external/bsd/acpica/dist/include/
actypes.h 383 #define AcpiOsDeleteMutex(Handle) (void) AcpiOsDeleteSemaphore (Handle)
384 #define AcpiOsAcquireMutex(Handle,Time) AcpiOsWaitSemaphore (Handle, 1, Time)
385 #define AcpiOsReleaseMutex(Handle) (void) AcpiOsSignalSemaphore (Handle, 1)
1115 ACPI_OBJECT_TYPE ActualType; /* Type associated with the Handle */
1116 ACPI_HANDLE Handle; /* object reference */
actbl1.h 657 UINT8 Handle;
658 UINT8 Flags; /* If Handle matches a DSMAS handle, the definition of this field matches
686 UINT8 Handle;
actbl2.h 1316 UINT8 Handle;
2601 * NFIT/DVDIMM device handle support - used as the _ADR for each NVDIMM
2605 UINT32 Handle;
2609 /* Device handle construction and extraction macros */
2623 /* Macro to construct a NFIT/NVDIMM device handle */
2632 /* Macros to extract individual fields from a NFIT/NVDIMM device handle */
2634 #define ACPI_NFIT_GET_DIMM_NUMBER(handle) \
2635 ((handle) & ACPI_NFIT_DIMM_NUMBER_MASK)
2637 #define ACPI_NFIT_GET_CHANNEL_NUMBER(handle) \
2638 (((handle) & ACPI_NFIT_CHANNEL_NUMBER_MASK) >> ACPI_NFIT_CHANNEL_NUMBER_OFFSET
    [all...]

Completed in 27 milliseconds