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

1 2

  /src/sys/external/bsd/acpica/dist/compiler/
aslascii.c 56 FILE *Handle,
61 FILE *Handle,
75 * within comments. Note: does not handle nested comments and does
76 * not handle comment delimiters within string literals. However,
92 FILE *Handle;
97 Handle = fopen (Filename, "rb");
98 if (!Handle)
109 while (fread (&Byte, 1, 1, Handle) == 1)
119 FlConsumeAnsiComment (Handle, &Status);
124 FlConsumeNewComment (Handle, &Status)
    [all...]
  /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/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
TPCDynamicLibrarySearchGenerator.cpp 18 auto Handle = TPC.loadDylib(LibraryPath);
19 if (!Handle)
20 return Handle.takeError();
22 return std::make_unique<TPCDynamicLibrarySearchGenerator>(TPC, *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 162 ACPI_HANDLE Handle;
222 Status = AcpiGetHandle (NULL, "\\_SB", &Handle);
226 Info.EvaluateInfo->PrefixNode = Handle;
  /src/sys/external/bsd/acpica/dist/tools/acpiexec/
aeexec.c 105 ACPI_HANDLE Handle;
113 Status = AcpiGetHandle (NULL, "\\_GPE", &Handle);
126 Status = AcpiGetHandle (NULL, "\\GPE2", &Handle);
129 Status = AcpiGetType (Handle, &Type);
136 Status = AcpiInstallGpeBlock (Handle, &BlockAddress, 7, 8);
139 Status = AcpiInstallGpeHandler (Handle, 8,
143 Status = AcpiEnableGpe (Handle, 8);
158 Status = AcpiRemoveGpeHandler (Handle, 8, AeGpeHandler);
164 Status = AcpiGetHandle (NULL, "\\GPE3", &Handle);
167 Status = AcpiGetType (Handle, &Type)
    [all...]
aehandlers.c 570 ACPI_HANDLE Handle;
573 Status = AcpiGetHandle (NULL, "\\_TZ.TZ1", &Handle);
576 Status = AcpiInstallNotifyHandler (Handle, ACPI_ALL_NOTIFY,
580 Status = AcpiInstallNotifyHandler (Handle, ACPI_ALL_NOTIFY,
584 Status = AcpiRemoveNotifyHandler (Handle, ACPI_ALL_NOTIFY,
588 Status = AcpiRemoveNotifyHandler (Handle, ACPI_ALL_NOTIFY,
592 Status = AcpiInstallNotifyHandler (Handle, ACPI_ALL_NOTIFY,
596 Status = AcpiInstallNotifyHandler (Handle, ACPI_ALL_NOTIFY,
601 Status = AcpiGetHandle (NULL, "\\_PR.CPU0", &Handle);
604 Status = AcpiInstallNotifyHandler (Handle, ACPI_ALL_NOTIFY
    [all...]
aetests.c 84 ACPI_HANDLE Handle;
95 Status = AcpiGetHandle (NULL, "\\", &Handle);
106 Status = AcpiGetHandle (NULL, "\\_SB_", &Handle);
109 Status = AcpiUnloadParentTable (Handle);
127 Status = AcpiGetHandle (NULL, "\\_T99", &Handle);
130 Status = AcpiUnloadParentTable (Handle);
272 Status = AcpiGetHandle (NULL, "\\_SB", &Handle);
275 Status = AcpiSetupGpeForWake (Handle, NULL, 5);
281 Status = AcpiSetupGpeForWake (Handle, NULL, 6);
287 Status = AcpiSetupGpeForWake (Handle, NULL, 9)
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/inc/protocol/
vgaclass.h 48 EFI_HANDLE Handle;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
SafeStackLayout.h 41 const Value *Handle;
57 /// handle to retrieve the object's offset in the frame later.
  /src/external/apache2/llvm/dist/llvm/lib/Support/
DynamicLibrary.cpp 36 static void DLClose(void *Handle);
37 static void *DLSym(void *Handle, const char *Symbol);
42 HandleList::iterator Find(void *Handle) { return find(Handles, Handle); }
44 bool Contains(void *Handle) {
45 return Handle == Process || Find(Handle) != Handles.end();
48 bool AddLibrary(void *Handle, bool IsProcess = false, bool CanClose = true) {
50 assert((Handle == this ? IsProcess : !IsProcess) && "Bad Handle.")
    [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/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_addrhashmap.h 30 // Map::Handle h(&m, addr);
37 // Map::Handle h(&m, addr, true);
38 // this will remove the data from the map in Handle dtor
43 // Map::Handle h(&m, addr, false, true);
44 // this will create a new element or return a handle to an existing element
72 class Handle {
74 Handle(AddrHashMap<T, kSize> *map, uptr addr);
75 Handle(AddrHashMap<T, kSize> *map, uptr addr, bool remove);
76 Handle(AddrHashMap<T, kSize> *map, uptr addr, bool remove, bool create);
78 ~Handle();
    [all...]
sanitizer_chained_origin_depot.cpp 44 struct Handle {
47 Handle(const ChainedOriginDepotNode *node, u32 id) : node_(node), id_(id) {}
54 static Handle get_handle(u32 id);
56 typedef Handle handle_type;
119 ChainedOriginDepotNode::Handle ChainedOriginDepotNode::get_handle(u32 id) {
120 return Handle(&depot.nodes[id], id);
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_addrhashmap.h 30 // Map::Handle h(&m, addr);
37 // Map::Handle h(&m, addr, true);
38 // this will remove the data from the map in Handle dtor
43 // Map::Handle h(&m, addr, false, true);
44 // this will create a new element or return a handle to an existing element
72 class Handle {
74 Handle(AddrHashMap<T, kSize> *map, uptr addr);
75 Handle(AddrHashMap<T, kSize> *map, uptr addr, bool remove);
76 Handle(AddrHashMap<T, kSize> *map, uptr addr, bool remove, bool create);
78 ~Handle();
    [all...]
sanitizer_chained_origin_depot.cpp 45 struct Handle {
48 Handle(const ChainedOriginDepotNode *node, u32 id) : node_(node), id_(id) {}
55 static Handle get_handle(u32 id);
57 typedef Handle handle_type;
120 ChainedOriginDepotNode::Handle ChainedOriginDepotNode::get_handle(u32 id) {
121 return Handle(&depot.nodes[id], id);
  /src/sys/arch/macppc/dev/
adbvar.h 57 typedef void **Handle;
  /src/sys/external/bsd/acpica/dist/os_specific/service_layers/
oswintbl.c 319 HKEY Handle = NULL;
330 /* Get a handle to the table key */
363 0L, KEY_READ, &Handle);
409 WinStatus = RegEnumKey(Handle, i, KeyBuffer, sizeof(KeyBuffer));
416 WinStatus = RegOpenKey(Handle, KeyBuffer, &SubKey);
425 RegCloseKey(Handle);
426 Handle = SubKey;
435 WinStatus = RegEnumValue(Handle, i, KeyBuffer, &NameSize, NULL,
453 WinStatus = RegQueryValueEx(Handle, KeyBuffer, NULL, NULL,
474 WinStatus = RegQueryValueEx(Handle, KeyBuffer, NULL, NULL
    [all...]
  /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/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
TargetProcessControl.h 95 LookupRequest(tpctypes::DylibHandle Handle, const SymbolLookupSet &Symbols)
96 : Handle(Handle), Symbols(Symbols) {}
97 tpctypes::DylibHandle Handle;
121 /// Load the dynamic library at the given path and return a handle to it.
122 /// If LibraryPath is null this function will return the global handle for
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXReplaceImageHandles.cpp 68 // Now clean up any handle-access instructions
70 // but we need the handle access to be eliminated because they are not
114 MachineOperand &Handle = MI.getOperand(1);
116 replaceImageHandle(Handle, MF);
137 assert(Op.isReg() && "Handle is not in a reg?");
139 // Which instruction defines the handle?
144 // The handle is a parameter value being loaded, replace with the
168 // The handle is a global variable, replace with the global variable name
185 llvm_unreachable("Unknown instruction operating on handle");
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyLowerGlobalDtors.cpp 133 GlobalVariable *Handle = new GlobalVariable(
136 Handle->setVisibility(GlobalVariable::HiddenVisibility);
137 DsoHandle = Handle;
  /src/sys/arch/mac68k/mac68k/
macrom.h 83 typedef void **Handle;
127 Handle GetResource(u_int, short);
  /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/external/apache2/llvm/dist/llvm/include/llvm/Support/Windows/
WindowsSupport.h 80 handle_type Handle;
86 : Handle(HandleTraits::GetInvalid()) {}
89 : Handle(h) {}
92 if (HandleTraits::IsValid(Handle))
93 HandleTraits::Close(Handle);
97 handle_type t = Handle;
98 Handle = HandleTraits::GetInvalid();
103 if (HandleTraits::IsValid(Handle))
104 HandleTraits::Close(Handle);
105 Handle = h
    [all...]

Completed in 33 milliseconds

1 2