Searched refs:registered (Results 1 - 25 of 36) sorted by relevance

12

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
H A DDebuggeeRegister.java47 LinkedList<DebuggeeWrapper> registered = new LinkedList<DebuggeeWrapper>(); field in class:DebuggeeRegister
56 registered.add(debuggee);
63 * returns true if debuggee was registered
66 return registered.remove(debuggee);
70 * Returns list of all registered DebuggeeWrappers.
75 return registered;
79 * Stops each of registered DebuggeeWrappers by invoking DebuggeeWrapper.stop().
82 for (DebuggeeWrapper wrapper : registered) {
87 registered.clear();
/external/mesa3d/src/egl/main/
H A Deglglobals.c89 static EGLBoolean registered = EGL_FALSE; local
93 if (!registered) {
95 registered = EGL_TRUE;
/external/tensorflow/tensorflow/core/framework/
H A Dcancellation_test.cc29 bool registered = manager->RegisterCallback( local
31 EXPECT_TRUE(registered);
42 bool registered = manager->RegisterCallback( local
44 EXPECT_TRUE(registered);
54 bool registered = manager->RegisterCallback(token, nullptr); local
55 EXPECT_FALSE(registered);
63 bool registered = manager->RegisterCallback( local
65 EXPECT_TRUE(registered);
/external/python/cpython2/Lib/xml/dom/
H A Ddomreg.py16 # DOM implementations not officially registered should register
19 registered = {} variable
30 registered[name] = factory
59 return registered[name]()
67 for creator in registered.values():
/external/python/cpython3/Lib/xml/dom/
H A Ddomreg.py14 # DOM implementations not officially registered should register
17 registered = {} variable
28 registered[name] = factory
57 return registered[name]()
65 for creator in registered.values():
/external/clang/test/Driver/
H A Das-default-dwarf.s1 @ REQUIRES: arm-registered-target
H A Das-dwarf-cie.s1 # REQUIRES: x86-registered-target
/external/webrtc/webrtc/test/channel_transport/
H A Dchannel_transport.cc35 int registered = voe_network_->RegisterExternalTransport(channel, local
38 EXPECT_EQ(0, registered);
40 assert(registered == 0);
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DRegistryParser.h42 void registered(const entry &E) { function in class:llvm::RegistryParser
H A DRegistry.h70 Cur->registered(E);
125 /// void registered(const Registry<Collector>::entry &e) {
130 /// CollectorPrinter() { init(); } // Print those already registered.
143 virtual void registered(const entry &) = 0;
145 /// Calls 'registered' for each pre-existing entry.
149 registered(*I);
181 /// 1. The registered subclass has a default constructor.
/external/webrtc/webrtc/audio/
H A Daudio_receive_stream.cc102 bool registered = rtp_header_parser_->RegisterRtpHeaderExtension( local
104 RTC_DCHECK(registered);
107 bool registered = rtp_header_parser_->RegisterRtpHeaderExtension( local
109 RTC_DCHECK(registered);
111 bool registered = rtp_header_parser_->RegisterRtpHeaderExtension( local
113 RTC_DCHECK(registered);
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
H A DBluetoothHidDeviceFacade.java165 public void onAppStatusChanged(BluetoothDevice pluggedDevice, boolean registered) {
166 Log.d("onAppStatusChanged: pluggedDevice=" + pluggedDevice + " registered="
167 + registered);
169 result.putBoolean("registered", registered);
214 result.putByte("registered", reportId);
366 * @return true if successfully registered the app; otherwise false
/external/swiftshader/third_party/LLVM/lib/Support/Unix/
H A DSignals.inc99 // If the handlers are already registered, we're done.
/external/tensorflow/tensorflow/contrib/verbs/
H A DREADME.md30 3. Following HKUST research on the use of GPU direct, and their [GDR implementation](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/contrib/gdr/README.md), there is a smart way to benefit from the TensorFlow allocation theme which is mostly pool based, i.e allocators pre-allocate a large memory block, and allocate the tensors from there. By attaching a custom Visitor to relevant allocators, we can do a single registration of the entire memory block, which zeros the registration overhead. Once the block is registered, each new tensor allocated will be at a registered address, which will allow us to do direct RDMA writes to it.
35 2. Non DMAable tensors (CanMemCopy == false) will be serialized to a TensorProto on the sender side, RDMA written to a registered buffer on the receiver side, and then deserialized by the receiver.
36 3. Tensors which are located on a non-RDMA-compatible GPU, will be RDMA written to a registered CPU **proxy** buffer on the receiver side, and then copied to GPU by the receiver.
108 * **class RdmaMemoryMgr** - Manages the meta-data cache, and the registered memory regions.
H A Dpatch_notes_verbs_with_0_copies.md14 2. Non DMAble tensors (CanMemCopy == false) will be serialized to proto on the sender side, RDMA written to a registered buffer on the receiver side, and then deserialized by the receiver.
15 3. Tensors which are located on a non-RDMA-compatible GPU, will be RDMA written to a registered CPU proxy buffer on the receiver side, and then copied to GPU by the receiver.
39 * **class RdmaMemoryMgr** - Manages the meta-data cache, and the registered memory regions.
/external/llvm/bindings/ocaml/target/
H A Dllvm_target.mli138 (** [first ()] returns the first target in the registered targets
150 registered, or [None] otherwise. *)
154 [Error] if [triple] does not correspond to a registered target. *)
/external/libchrome/base/metrics/
H A Dfield_trial.cc662 for (const auto& registered : global_->registered_) {
664 if (!registered.second->GetStateWhileLocked(&trial))
1116 for (const auto& registered : global_->registered_) {
1117 AddToAllocatorWhileLocked(allocator, registered.second);
1243 for (const auto& registered : global_->registered_) {
1245 registered.second);
H A Dpersistent_histogram_allocator.h249 // processes if |registered| (as in: added to the StatisticsRecorder) is
251 void FinalizeHistogram(Reference ref, bool registered);
H A Dpersistent_histogram_allocator.cc419 bool registered) {
420 if (registered) {
421 // If the created persistent histogram was registered then it needs to
427 // If it wasn't registered then a race condition must have caused two to
418 FinalizeHistogram(Reference ref, bool registered) argument
/external/python/cpython3/Lib/asyncio/
H A Dselector_events.py369 def _sock_recv(self, fut, registered, sock, n):
373 if registered:
410 def _sock_sendall(self, fut, registered, sock, data):
413 if registered:
483 # socket is still registered, the callback will be retried later
506 def _sock_accept(self, fut, registered, sock):
508 if registered:
/external/mesa3d/docs/specs/OLD/
H A DMESA_program_debug.spec175 callback functions registered with these targets will be called
221 called from within a callback function registered with
/external/libchrome/base/
H A Dtracked_objects.cc459 ThreadData* registered = reinterpret_cast<ThreadData*>(tls_index_.Get());
460 if (registered)
461 return registered;
482 // The list_lock_ was created when we registered the callback, so it won't be
/external/ImageMagick/www/api/
H A Dmodule.php342 <p>RegisterModule() adds an entry to the module list. It returns a pointer to the registered entry on success.</p>
359 <dd>a pointer to the registered entry is returned. </dd>
/external/dtc/Documentation/
H A Ddtc-paper.tex586 trademarks or registered trademarks of International Business Machines
589 Apple and Power Macintosh are a registered trademarks of Apple
592 Linux is a registered trademark of Linus Torvalds.
/external/minijail/
H A Dcommon.mk50 # If source code is being generated, rules will need to be registered for
761 @# and another script starts executing before it gets re-registered, however

Completed in 1196 milliseconds

12