/external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/ |
HandleOwner.java | 7 import org.chromium.mojo.system.Handle; 12 * Describes a class that owns a handle. 14 * @param <H> The type of the owned handle. 16 public interface HandleOwner<H extends Handle> extends Closeable { 19 * Pass the handle owned by this class.
|
Message.java | 7 import org.chromium.mojo.system.Handle; 27 private final List<? extends Handle> mHandle; 40 public Message(ByteBuffer buffer, List<? extends Handle> handles) { 56 public List<? extends Handle> getHandles() {
|
/external/v8/src/regexp/ |
interpreter-irregexp.h | 20 Handle<ByteArray> code, 21 Handle<String> subject,
|
regexp-utils.h | 19 static Handle<String> GenericCaptureGetter(Isolate* isolate, 20 Handle<RegExpMatchInfo> match_info, 25 Isolate* isolate, Handle<JSReceiver> regexp, int value); 27 Isolate* isolate, Handle<JSReceiver> recv); 31 Isolate* isolate, Handle<JSReceiver> regexp, Handle<String> string, 32 Handle<Object> exec); 36 static Maybe<bool> IsRegExp(Isolate* isolate, Handle<Object> object); 40 static bool IsUnmodifiedRegExp(Isolate* isolate, Handle<Object> obj); 44 static int AdvanceStringIndex(Isolate* isolate, Handle<String> string [all...] |
/external/v8/src/ast/ |
compile-time-value.h | 29 static Handle<FixedArray> GetValue(Isolate* isolate, Expression* expression); 32 static LiteralType GetLiteralType(Handle<FixedArray> value); 35 static Handle<HeapObject> GetElements(Handle<FixedArray> value);
|
/external/v8/src/ |
find-and-replace-pattern.h | 19 void Add(Handle<Map> map_to_find, Handle<Object> obj_to_replace) { 29 Handle<Map> find_[kMaxCount]; 30 Handle<Object> replace_[kMaxCount];
|
property.h | 25 Handle<Name> GetKey() const { return key_; } 26 Handle<Object> GetValue() const { return value_; } 31 static Descriptor DataField(Handle<Name> key, int field_index, 35 static Descriptor DataField(Handle<Name> key, int field_index, 39 Handle<Object> wrapped_field_type); 41 static Descriptor DataConstant(Handle<Name> key, Handle<Object> value, 47 static Descriptor DataConstant(Handle<Name> key, int field_index, 48 Handle<Object> value, 51 static Descriptor AccessorConstant(Handle<Name> key, Handle<Object> foreign [all...] |
compiler.h | 52 static bool Compile(Handle<JSFunction> function, ClearExceptionFlag flag); 53 static bool CompileBaseline(Handle<JSFunction> function); 54 static bool CompileOptimized(Handle<JSFunction> function, ConcurrencyMode); 55 static bool CompileDebugCode(Handle<SharedFunctionInfo> shared); 56 static MaybeHandle<JSArray> CompileForLiveEdit(Handle<Script> script); 68 static void PostInstantiation(Handle<JSFunction> function, PretenureFlag); 99 Handle<String> source, Handle<SharedFunctionInfo> outer_info, 100 Handle<Context> context, LanguageMode language_mode, 103 int column_offset = 0, Handle<Object> script_name = Handle<Object>() [all...] |
compilation-dependencies.cc | 16 DependentCode* CompilationDependencies::Get(Handle<Object> object) { 18 return Handle<Map>::cast(object)->dependent_code(); 20 return Handle<PropertyCell>::cast(object)->dependent_code(); 22 return Handle<AllocationSite>::cast(object)->dependent_code(); 29 void CompilationDependencies::Set(Handle<Object> object, 30 Handle<DependentCode> dep) { 32 Handle<Map>::cast(object)->set_dependent_code(*dep); 34 Handle<PropertyCell>::cast(object)->set_dependent_code(*dep); 36 Handle<AllocationSite>::cast(object)->set_dependent_code(*dep); 44 Handle<HeapObject> object) [all...] |
factory.cc | 33 return Handle<TYPE>(TYPE::cast(__object__), ISOLATE); \ 59 return Handle<TYPE>(); \ 63 Handle<T> Factory::New(Handle<Map> map, AllocationSpace space) { 72 Handle<T> Factory::New(Handle<Map> map, 74 Handle<AllocationSite> allocation_site) { 82 Handle<HeapObject> Factory::NewFillerObject(int size, 92 Handle<PrototypeInfo> Factory::NewPrototypeInfo() { 93 Handle<PrototypeInfo> result [all...] |
/external/webrtc/webrtc/modules/desktop_capture/ |
shared_memory.cc | 16 const SharedMemory::Handle SharedMemory::kInvalidHandle = NULL; 18 const SharedMemory::Handle SharedMemory::kInvalidHandle = -1; 21 SharedMemory::SharedMemory(void* data, size_t size, Handle handle, int id) 24 handle_(handle),
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/ |
HiiHandle.c | 2 This file is for functins related to assign and free Framework HII handle number.
25 Initialize the Framework Hii Handle database.
41 Allocate a new Framework HII handle.
43 @param Handle Returns the new Framework HII Handle assigned.
45 @retval EFI_SUCCESS A new Framework HII Handle is assigned.
46 @retval EFI_OUT_OF_RESOURCE The Framework HII Handle database is depleted.
51 OUT FRAMEWORK_EFI_HII_HANDLE *Handle
59 *Handle = (FRAMEWORK_EFI_HII_HANDLE) Index;
60 ASSERT (*Handle != 0); [all...] |
/external/desugar/java/com/google/devtools/build/android/desugar/ |
LambdaInfo.java | 19 import org.objectweb.asm.Handle; 27 Handle methodReference, 28 Handle bridgeMethod) { 39 public abstract Handle methodReference(); 40 public abstract Handle bridgeMethod();
|
/system/netd/libnetdutils/include/netdutils/ |
Handle.h | 48 class Handle { 50 constexpr Handle() = default; 51 constexpr Handle(const T& value) : mValue(value) {} 55 bool operator==(const Handle& that) const { return get() == that.get(); } 56 bool operator!=(const Handle& that) const { return get() != that.get(); } 64 using name = ::android::netdutils::Handle<type, _##name##Tag>; 67 inline std::ostream& operator<<(std::ostream& os, const Handle<T, TagT>& handle) { 68 return os << handle.get();
|
/external/libmojo/mojo/edk/js/ |
handle.cc | 5 #include "mojo/edk/js/handle.h" 15 HandleWrapper::HandleWrapper(MojoHandle handle) 16 : handle_(mojo::Handle(handle)) { 49 v8::Handle<v8::Value> Converter<mojo::Handle>::ToV8(v8::Isolate* isolate, 50 const mojo::Handle& val) { 56 bool Converter<mojo::Handle>::FromV8(v8::Isolate* isolate, 57 v8::Handle<v8::Value> val, 58 mojo::Handle* out) 64 gin::Handle<mojo::edk::js::HandleWrapper> handle; local [all...] |
handle.h | 12 #include "gin/handle.h" 22 // Wrapper for mojo Handles exposed to JavaScript. This ensures the Handle 28 static gin::Handle<HandleWrapper> Create(v8::Isolate* isolate, 29 MojoHandle handle) { 30 return gin::CreateHandle(isolate, new HandleWrapper(handle)); 33 mojo::Handle get() const { return handle_.get(); } 34 mojo::Handle release() { return handle_.release(); } 41 HandleWrapper(MojoHandle handle); 58 // TODO(mpcomplete): define converters for all Handle subtypes. 60 struct Converter<mojo::Handle> { [all...] |
/hardware/qcom/display/msm8996/sdm/libs/core/ |
comp_manager.h | 48 const DisplayConfigVariableInfo &fb_config, Handle *res_mgr_hnd); 49 DisplayError UnregisterDisplay(Handle res_mgr_hnd); 50 DisplayError ReconfigureDisplay(Handle display_ctx, const HWDisplayAttributes &display_attributes, 54 void PrePrepare(Handle display_ctx, HWLayers *hw_layers); 55 DisplayError Prepare(Handle display_ctx, HWLayers *hw_layers); 56 DisplayError PostPrepare(Handle display_ctx, HWLayers *hw_layers); 57 DisplayError ReConfigure(Handle display_ctx, HWLayers *hw_layers); 58 DisplayError PostCommit(Handle display_ctx, HWLayers *hw_layers); 59 void Purge(Handle display_ctx); 60 void ProcessIdleTimeout(Handle display_ctx) [all...] |
/external/libchrome/base/ |
sync_socket.h | 36 typedef HANDLE Handle; 37 typedef Handle TransitDescriptor; 39 typedef int Handle; 42 static const Handle kInvalidHandle; 46 // Creates a SyncSocket from a Handle. Used in transport. 47 explicit SyncSocket(Handle handle) : handle_(handle) {} 51 // |socket_a| and |socket_b| must not hold a valid handle. Upon successfu 94 Handle handle() const { return handle_; } function in class:base::SyncSocket [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/HiiPack/ |
FindFiles.c | 135 HANDLE Handle;
139 Handle = INVALID_HANDLE_VALUE;
148 Handle = FindFirstFile (TempName, &FindData);
149 if (Handle != INVALID_HANDLE_VALUE) {
159 } while (FindNextFile (Handle, &FindData));
162 if (Handle != INVALID_HANDLE_VALUE) {
163 FindClose (Handle);
164 Handle = INVALID_HANDLE_VALUE;
168 // function to handle each one found. [all...] |
/external/v8/src/debug/ |
debug-frames.h | 31 Handle<JSFunction> GetFunction(); 32 Handle<Script> GetScript(); 33 Handle<Object> GetParameter(int index); 34 Handle<Object> GetExpression(int index); 37 Handle<Object> GetContext(); 47 void MaterializeStackLocals(Handle<JSObject> target, 48 Handle<ScopeInfo> scope_info); 50 void MaterializeStackLocals(Handle<JSObject> target, 51 Handle<JSFunction> function); 53 void UpdateStackLocalsFromMaterializedObject(Handle<JSObject> object [all...] |
/external/v8/src/builtins/ |
builtins-json.cc | 19 Handle<Object> source = args.atOrUndefined(isolate, 1); 20 Handle<Object> reviver = args.atOrUndefined(isolate, 2); 21 Handle<String> string; 35 Handle<Object> object = args.atOrUndefined(isolate, 1); 36 Handle<Object> replacer = args.atOrUndefined(isolate, 2); 37 Handle<Object> indent = args.atOrUndefined(isolate, 3);
|
/external/v8/src/runtime/ |
runtime-literals.cc | 17 static Handle<Map> ComputeObjectLiteralMap( 18 Handle<Context> context, 19 Handle<BoilerplateDescription> boilerplate_description, 28 Isolate* isolate, Handle<FeedbackVector> vector, 29 Handle<BoilerplateDescription> boilerplate_description); 32 Isolate* isolate, Handle<FeedbackVector> vector, 33 Handle<BoilerplateDescription> boilerplate_description, 35 Handle<Context> context = isolate->native_context(); 42 Handle<Map> map = ComputeObjectLiteralMap(context, boilerplate_description, 48 Handle<JSObject> boilerplate [all...] |
/external/skia/include/core/ |
SkRasterHandleAllocator.h | 21 * 2. associates a "handle" to a private object that can track the matrix/clip of the SkCanvas 30 * If you have already allocated the base layer (and its handle, release-proc etc.) then you 41 typedef void* Handle; 45 // with it: the pixels, the "handle", etc. This is passed the pixel address and fReleaseCtx. 50 Handle fHandle; // public handle returned by SkCanvas::accessTopRasterHandle() 54 * Given a requested info, allocate the corresponding pixels/rowbytes, and whatever handle 65 * Clients access the handle for a given layer by calling SkCanvas::accessTopRasterHandle(). 66 * To allow the handle to reflect the current matrix/clip in the canvs, updateHandle() is 67 * is called. The subclass is responsible to update the handle as it sees fit [all...] |
/device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/ |
DebugCommunicationLibUsb3Common.c | 87 @param Handle Debug port handle.
94 IN USB3_DEBUG_PORT_HANDLE *Handle,
101 DebugCapabilityBase = Handle->DebugCapabilityBase;
110 @param Handle Debug port handle.
118 IN USB3_DEBUG_PORT_HANDLE *Handle,
125 DebugCapabilityBase = Handle->DebugCapabilityBase;
134 @param Handle Debug port handle. [all...] |
/hardware/qcom/display/msm8998/sdm/libs/core/ |
comp_manager.h | 49 const DisplayConfigVariableInfo &fb_config, Handle *display_ctx); 50 DisplayError UnregisterDisplay(Handle display_ctx); 51 DisplayError ReconfigureDisplay(Handle display_ctx, const HWDisplayAttributes &display_attributes, 55 void PrePrepare(Handle display_ctx, HWLayers *hw_layers); 56 DisplayError Prepare(Handle display_ctx, HWLayers *hw_layers); 57 DisplayError Commit(Handle display_ctx, HWLayers *hw_layers); 58 DisplayError PostPrepare(Handle display_ctx, HWLayers *hw_layers); 59 DisplayError ReConfigure(Handle display_ctx, HWLayers *hw_layers); 60 DisplayError PostCommit(Handle display_ctx, HWLayers *hw_layers); 61 void Purge(Handle display_ctx) [all...] |