HomeSort by relevance Sort by last modified time
    Searched refs:Handle (Results 176 - 200 of 2479) sorted by null

1 2 3 4 5 6 78 91011>>

  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformDxe/
SioPlatformPolicy.c 69 EFI_HANDLE Handle;
72 Handle = NULL;
88 &Handle,
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/
InvokeDynamicInsnNode.java 3 import org.objectweb.asm.Handle;
25 public Handle bsm;
45 final Handle bsm, final Object... bsmArgs) {
  /external/libmojo/mojo/public/cpp/system/
buffer.h 22 #include "mojo/public/cpp/system/handle.h"
46 : NON_EXPORTED_BASE(public Handle) {
54 explicit SharedBufferHandle(MojoHandle value) : Handle(value) {}
58 // Creates a new SharedBufferHandle. Returns an invalid handle on failure.
61 // Clones this shared buffer handle. If |access_mode| is READ_ONLY or this is
62 // a read-only handle, the new handle will be read-only. On failure, this will
75 static_assert(sizeof(SharedBufferHandle) == sizeof(Handle),
watcher.h 16 #include "mojo/public/cpp/system/handle.h"
21 // A Watcher watches a single Mojo handle for signal state changes.
26 // A callback to be called any time a watched handle changes state in some
35 // |MOJO_RESULT_CANCELLED|: The handle has been closed and the watch has
47 // Indicates if the Watcher is currently watching a handle.
50 // Starts watching |handle|. A Watcher may only watch one handle at a time,
54 // If no signals in |signals| can ever be satisfied for |handle|, this returns
57 // If |handle| is not a valid watchable (message or data pipe) handle, thi
75 Handle handle() const { return handle_; } function in class:mojo::Watcher
    [all...]
  /external/llvm/lib/Support/Windows/
WindowsSupport.h 93 handle_type Handle;
99 : Handle(HandleTraits::GetInvalid()) {}
102 : Handle(h) {}
105 if (HandleTraits::IsValid(Handle))
106 HandleTraits::Close(Handle);
110 handle_type t = Handle;
111 Handle = HandleTraits::GetInvalid();
116 if (HandleTraits::IsValid(Handle))
117 HandleTraits::Close(Handle);
118 Handle = h
    [all...]
  /external/skia/tools/trace/
SkChromeTracingTracer.h 27 SkEventTracer::Handle addTraceEvent(char phase,
39 SkEventTracer::Handle handle) override;
67 Handle appendEvent(const void* data, size_t size);
SkDebugfTracer.h 22 SkEventTracer::Handle addTraceEvent(char phase,
34 SkEventTracer::Handle handle) override;
  /external/skqp/tools/trace/
SkChromeTracingTracer.h 27 SkEventTracer::Handle addTraceEvent(char phase,
39 SkEventTracer::Handle handle) override;
67 Handle appendEvent(const void* data, size_t size);
  /external/v8/src/
execution.h 17 class Handle;
31 Isolate* isolate, Handle<Object> callable, Handle<Object> receiver,
32 int argc, Handle<Object> argv[]);
36 MUST_USE_RESULT static MaybeHandle<Object> New(Handle<JSFunction> constructor,
38 Handle<Object> argv[]);
40 Handle<Object> constructor,
41 Handle<Object> new_target,
43 Handle<Object> argv[]);
45 // Call a function, just like Call(), but handle don't report exception
    [all...]
json-stringifier.cc 90 MaybeHandle<Object> JsonStringifier::Stringify(Handle<Object> object,
91 Handle<Object> replacer,
92 Handle<Object> gap) {
104 bool IsInList(Handle<String> key, List<Handle<String> >* list) {
107 for (const Handle<String>& existing : *list) {
113 bool JsonStringifier::InitializeReplacer(Handle<Object> replacer) {
120 List<Handle<String> > list;
121 Handle<Object> length_obj;
128 Handle<Object> element
    [all...]
lookup.cc 18 Handle<Object> receiver,
19 Handle<Object> key,
28 Handle<Name> name;
96 if (holder != *holder_) holder_ = handle(holder, isolate_);
104 holder_ = handle(holder, isolate_);
119 Handle<JSReceiver> LookupIterator::GetRootForNonJSReceiver(
120 Isolate* isolate, Handle<Object> receiver, uint32_t index) {
127 Handle<JSFunction> constructor = isolate->string_function();
128 Handle<JSObject> result = isolate->factory()->NewJSObject(constructor);
129 Handle<JSValue>::cast(result)->set_value(*receiver)
    [all...]
field-type.cc 28 Handle<FieldType> FieldType::None(Isolate* isolate) {
29 return handle(None(), isolate);
33 Handle<FieldType> FieldType::Any(Isolate* isolate) {
34 return handle(Any(), isolate);
41 Handle<FieldType> FieldType::Class(i::Handle<i::Map> map, Isolate* isolate) {
42 return handle(Class(*map), isolate);
53 Handle<i::Map> FieldType::AsClass() {
56 return handle(map, map->GetIsolate());
73 bool FieldType::NowIs(Handle<FieldType> other) { return NowIs(*other);
    [all...]
  /external/v8/src/runtime/
runtime-module.cc 25 Handle<Module> module(isolate->context()->module());
33 Handle<Module> module(isolate->context()->module());
42 Handle<Module> module(isolate->context()->module());
runtime-classes.cc 35 Handle<Object> name(constructor->shared()->name(), isolate);
57 Object* ThrowNotSuperConstructor(Isolate* isolate, Handle<Object> constructor,
58 Handle<JSFunction> function) {
59 Handle<Object> super_name;
61 super_name = handle(Handle<JSFunction>::cast(constructor)->shared()->name(),
70 if (Handle<String>::cast(super_name)->length() == 0) {
73 Handle<Object> function_name(function->shared()->name(), isolate);
75 if (Handle<String>::cast(function_name)->length() == 0) {
102 Handle<Object> super_class
    [all...]
  /external/v8/src/wasm/
wasm-js.cc 40 // in it, rather, use a provided ErrorThrower, or let caller handle it.
41 static bool HasBrand(i::Handle<i::Object> value, i::Handle<i::Symbol> sym) {
43 i::Handle<i::JSObject> object = i::Handle<i::JSObject>::cast(value);
48 static bool BrandCheck(i::Handle<i::Object> value, i::Handle<i::Symbol> sym,
53 i::Handle<i::String> v8_str(i::Isolate* isolate, const char* str) {
69 i::Handle<i::Context> i_context = Utils::OpenHandle(*context);
71 i::handle(i_context->wasm_module_sym()), thrower
    [all...]
  /art/compiler/driver/
dex_compilation_unit.h 25 #include "handle.h"
38 DexCompilationUnit(Handle<mirror::ClassLoader> class_loader,
46 Handle<mirror::DexCache> dex_cache);
48 Handle<mirror::ClassLoader> GetClassLoader() const {
112 Handle<mirror::DexCache> GetDexCache() const {
121 const Handle<mirror::ClassLoader> class_loader_;
133 const Handle<mirror::DexCache> dex_cache_;
  /art/openjdkjvmti/
ti_class_loader.h 74 art::Handle<art::mirror::ClassLoader> loader,
82 art::Thread* self, art::Handle<art::mirror::ClassLoader> loader)
89 art::Handle<art::mirror::ClassLoader> loader,
94 art::Handle<art::mirror::Object> java_dex_file) REQUIRES_SHARED(art::Locks::mutator_lock_);
98 art::Handle<art::mirror::LongArray> old_dex_file_cookie,
107 art::Thread* self, art::Handle<art::mirror::ClassLoader> loader)
  /external/pdfium/core/fxcrt/
weak_ptr.h 26 : m_pHandle(new Handle(std::move(pObj))) {}
54 m_pHandle.Reset(new Handle(std::move(pObj)));
59 class Handle {
61 explicit Handle(std::unique_ptr<T, D> ptr)
79 ~Handle() = default;
85 RetainPtr<Handle> m_pHandle;
  /external/v8/src/ic/
access-compiler.cc 12 Handle<Code> PropertyAccessCompiler::GetCodeWithFlags(Code::Flags flags,
17 Handle<Code> code = factory()->NewCode(desc, flags, masm()->CodeObject());
30 Handle<Code> PropertyAccessCompiler::GetCodeWithFlags(Code::Flags flags,
31 Handle<Name> name) {
34 Handle<String>::cast(name)->ToCString().get())
41 Handle<Code> code(masm->isolate()->builtins()->builtin(name));
  /art/runtime/
aot_class_linker.h 34 Handle<mirror::Class> klass,
41 Handle<mirror::Class> klass,
  /device/linaro/bootloader/edk2/MdePkg/Library/BasePerformanceLibNull/
PerformanceLib.c 26 Creates a record that contains the Handle, Token, and Module.
31 @param Handle The pointer to environment specific context used
47 IN CONST VOID *Handle, OPTIONAL
59 Looks up the record that matches Handle, Token, and Module.
66 @param Handle The pointer to environment specific context used
82 IN CONST VOID *Handle, OPTIONAL
105 the log entry is returned in Handle, Token, Module, StartTimeStamp, and EndTimeStamp.
107 If Handle is NULL, then ASSERT().
116 @param Handle The pointer to environment specific context used to identify the component
134 OUT CONST VOID **Handle,
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/Library/XenIoMmioLib/
XenIoMmioLib.c 56 the handle pointed to by @Handle, or on a new handle if it points to
59 @param Handle Pointer to the handle to install the protocols
60 on, may point to a NULL handle.
75 IN OUT EFI_HANDLE *Handle,
84 ASSERT (Handle != NULL);
86 OutHandle = *Handle;
108 *Handle = OutHandle;
    [all...]
  /external/libmojo/mojo/edk/js/
drain_data.h 26 // Starts waiting for data on the specified data pipe consumer handle.
28 DrainData(v8::Isolate* isolate, mojo::Handle handle);
32 v8::Handle<v8::Value> GetPromise();
45 // When the remote data pipe handle is closed, or an error occurs, deliver
  /external/skia/src/core/
SkATrace.h 25 SkEventTracer::Handle addTraceEvent(char phase,
38 SkEventTracer::Handle handle) override;
  /external/skia/src/gpu/vk/
GrVkDescriptorSet.h 22 GrVkDescriptorSetManager::Handle handle);
41 GrVkDescriptorSetManager::Handle fHandle;

Completed in 1567 milliseconds

1 2 3 4 5 6 78 91011>>