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

  /src/sys/external/bsd/gnu-efi/dist/apps/
drv0_use.c 57 EFI_HANDLE *Handles = NULL;
63 NULL, &NoHandles, &Handles);
65 Print(L"Error looking up handles for proto: %d\n", Status);
72 Status = PlayWithGnuEfiAppsDrv0Protocol(Handles[i]);
77 if (Handles)
78 FreePool(Handles);
route80h.c 63 EFI_HANDLE *Handles;
70 &Handles);
76 rc = uefi_call_wrapper(BS->OpenProtocol, 6, Handles[i],
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
CFLAndersAliasAnalysis.h 87 std::forward_list<cflaa::FunctionHandle<CFLAndersAAResult>> Handles;
CFLSteensAliasAnalysis.h 102 std::forward_list<cflaa::FunctionHandle<CFLSteensAAResult>> Handles;
GlobalsModRef.h 76 std::list<DeletionCallbackHandle> Handles;
  /src/sys/external/bsd/gnu-efi/dist/lib/
init.c 121 EFI_HANDLE *Handles;
127 LibLocateHandle (ByProtocol, &UnicodeCollationProtocol, NULL, &NoHandles, &Handles);
137 Status = uefi_call_wrapper(BS->HandleProtocol, 3, Handles[Index], &UnicodeCollationProtocol, (VOID*)&Ui);
166 if (Handles) {
167 FreePool (Handles);
hand.c 35 EFI_HANDLE *Handles;
39 Status = LibLocateHandle (ByProtocol, ProtocolGuid, NULL, &NumberHandles, &Handles);
46 Status = uefi_call_wrapper(BS->HandleProtocol, 3, Handles[Index], ProtocolGuid, Interface);
52 if (Handles) {
53 FreePool (Handles);
142 // Get list of device handles that support the BLOCK_IO Protocol.
163 // If there was an error or there are no device handles that support
175 // Loop through all the device handles that support the BLOCK_IO Protocol
271 // Allocate space for the return buffer of device handles.
284 // Build list of matching device handles
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
DynamicLibrary.cpp 31 HandleList Handles;
42 HandleList::iterator Find(void *Handle) { return find(Handles, Handle); }
45 return Handle == Process || Find(Handle) != Handles.end();
54 if (Find(Handle) != Handles.end()) {
59 Handles.push_back(Handle);
76 for (void *Handle : Handles) {
81 for (void *Handle : llvm::reverse(Handles)) {
115 // Collection of known library handles.
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
FuchsiaHandleChecker.cpp 70 // operations(acquire/release/use) on handles instead of hardcoding
85 // denotes a syscall which will acquire two handles and save them to 'out0' and
325 // Unknown call, escape by value handles. They are not covered by
339 SmallVector<SymbolRef, 1024> Handles =
347 for (SymbolRef Handle : Handles) {
420 SmallVector<SymbolRef, 1024> Handles =
423 for (SymbolRef Handle : Handles) {
587 SmallVector<SymbolRef, 1024> Handles =
589 for (SymbolRef Handle : Handles) {
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Value.cpp 1040 assert(Entry && "Value doesn't have any handles?");
1045 // Ok, it doesn't have any handles yet, so we must insert it into the
1050 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles;
1051 const void *OldBucketPtr = Handles.getPointerIntoBucketsArray();
1053 ValueHandleBase *&Entry = Handles[getValPtr()];
1054 assert(!Entry && "Value really did already have handles?");
1060 if (Handles.isPointerIntoBucketsArray(OldBucketPtr) ||
1061 Handles.size() == 1) {
1066 for (DenseMap<Value*, ValueHandleBase*>::iterator I = Handles.begin(),
1067 E = Handles.end(); I != E; ++I)
    [all...]
  /src/external/mit/libuv/dist/include/uv/
win.h 216 AFD_POLL_HANDLE_INFO Handles[1];
246 * uv_cond_timedwait() to be HANDLEs, but we use CRITICAL_SECTIONs.
328 /* Head of a single-linked list of closed handles */ \
495 /* TODO: put the parser states in a union - TTY handles are always half-duplex
501 /* Used for readable TTY handles */ \
517 /* Used for writable TTY handles */ \
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 6019 std::list<HandleSDNode> Handles;
6091 Handles.emplace_back(NegX);
6098 // We're done with the handles.
6099 Handles.clear();
6147 Handles.emplace_back(NegX);
6154 // We're done with the handles.
6155 Handles.clear();
6195 Handles.emplace_back(NegZ);
6203 Handles.emplace_back(NegX);
6210 // We're done with the handles
    [all...]

Completed in 42 milliseconds