/third_party/node/src/ |
D | node_object_wrap.h | 39 if (persistent().IsEmpty()) in ~ObjectWrap() 41 persistent().ClearWeak(); in ~ObjectWrap() 42 persistent().Reset(); in ~ObjectWrap() 64 return v8::Local<v8::Object>::New(isolate, persistent()); in handle() 69 inline v8::Persistent<v8::Object>& persistent() { in persistent() function 76 assert(persistent().IsEmpty()); in Wrap() 79 persistent().Reset(v8::Isolate::GetCurrent(), handle); in Wrap() 85 persistent().SetWeak(this, WeakCallback, v8::WeakCallbackType::kParameter); in MakeWeak() 93 assert(!persistent().IsEmpty()); in Ref() 94 persistent().ClearWeak(); in Ref() [all …]
|
D | connection_wrap.cc | 45 CHECK_EQ(wrap_data->persistent().IsEmpty(), false); in OnConnection() 90 CHECK_EQ(req_wrap->persistent().IsEmpty(), false); in AfterConnect() 91 CHECK_EQ(wrap->persistent().IsEmpty(), false); in AfterConnect()
|
D | util.h | 791 const v8::PersistentBase<TypeName>& persistent) { 792 if (persistent.IsWeak()) { 793 return PersistentToLocal::Weak(isolate, persistent); 795 return PersistentToLocal::Strong(persistent); 806 const v8::PersistentBase<TypeName>& persistent) { 807 DCHECK(!persistent.IsWeak()); 809 const_cast<v8::PersistentBase<TypeName>*>(&persistent)); 815 const v8::PersistentBase<TypeName>& persistent) { 816 return v8::Local<TypeName>::New(isolate, persistent);
|
/third_party/node/deps/v8/include/ |
D | v8-util.h | 299 static PersistentContainerValue ClearAndLeak(Global<V>* persistent) { 300 V* v = persistent->val_; 301 persistent->val_ = nullptr; 305 static PersistentContainerValue Leak(Global<V>* persistent) { 306 return reinterpret_cast<PersistentContainerValue>(persistent->val_); 330 void AnnotateStrongRetainer(Global<V>* persistent) { 331 persistent->AnnotateStrongRetainer(label_); 371 Global<V> persistent(this->isolate(), value); 372 return SetUnique(key, &persistent); 386 Global<V> SetUnique(const K& key, Global<V>* persistent) { [all …]
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_psa_crypto_persistent_key.data | 37 Save maximum-size persistent raw key 41 Save larger than maximum-size persistent raw key 76 import/export persistent raw key: 1 byte 79 import/export persistent key RSA public key: good, 1024-bit 83 import/export persistent key RSA keypair: good, 1024-bit 87 import/export persistent raw key file not exist: 1 byte 90 import/export persistent key RSA public key file not exist: 1024-bit 94 import/export persistent key RSA keypair file not exist: 1024-bit 98 import/export-persistent symmetric key: 16 bytes 102 import/export persistent raw key with restart: 1 byte [all …]
|
D | test_suite_psa_crypto_slot_management.data | 135 Create failure: invalid location for a persistent key 143 Create failure: invalid key id (0) for a persistent key 173 Copy volatile to persistent 177 Copy persistent to volatile 181 Copy persistent to persistent 185 Copy persistent to persistent, same id but different owner 189 Copy persistent to persistent with enrollment algorithm 197 Copy persistent to occupied 201 Copy persistent to same 220 # Eviction from a key slot to be able to import a new persistent key. [all …]
|
D | test_suite_psa_crypto_slot_management.function | 50 /* Closing the key invalidate only volatile keys, not persistent ones. */ 59 /* Purging the key just purges RAM data of persistent keys. */ 545 /* If the target key is persistent, restart the system to make 871 * Create MBEDTLS_PSA_KEY_SLOT_COUNT persistent keys. 883 * Create a new persistent or volatile key. When creating the key, 884 * one of the descriptions of the previously created persistent keys 906 * the description of the persistent key that was evicted from the RAM 954 * Create a persistent key 976 * Check that we cannot access the persistent key as all slots are 978 * persistent key description in a slot to be able to access it. [all …]
|
D | test_suite_psa_crypto_se_driver_hal.data | 27 SE key import-export persistent (p_allocate allows all slots) 30 SE key import-export persistent (p_allocate allows 1 slot) 33 SE key import-export persistent, check after restart (slot 0) 36 SE key import-export persistent, check after restart (slot 3)
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/p2p/ |
D | p2p_group_add.py | 50 global persistent 64 def __init__(self,interface_name,wpas_dbus_interface,persistent,frequency, argument 69 self.persistent = persistent 124 self.P2PDictionary = {'persistent':self.persistent} 159 persistent = False variable 187 persistent = False variable 189 persistent = True variable 214 persistent,frequency,persistent_group_object)
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/examples/p2p/ |
D | p2p_group_add.py | 50 global persistent 64 def __init__(self,interface_name,wpas_dbus_interface,persistent,frequency, argument 69 self.persistent = persistent 124 self.P2PDictionary = {'persistent':self.persistent} 159 persistent = False variable 187 persistent = False variable 189 persistent = True variable 214 persistent,frequency,persistent_group_object)
|
/third_party/ffmpeg/libavcodec/ |
D | microdvddec.c | 44 int persistent; member 101 tag.persistent = MICRODVD_PERSISTENT_ON; in microdvd_load_tags() 119 tag.persistent = MICRODVD_PERSISTENT_ON; in microdvd_load_tags() 131 tag.persistent = MICRODVD_PERSISTENT_ON; in microdvd_load_tags() 145 tag.persistent = MICRODVD_PERSISTENT_ON; in microdvd_load_tags() 170 tag.persistent = MICRODVD_PERSISTENT_ON; in microdvd_load_tags() 179 tag.persistent = MICRODVD_PERSISTENT_ON; in microdvd_load_tags() 207 if (tags[i].persistent == MICRODVD_PERSISTENT_OPENED) in microdvd_open_tags() 240 if (tags[i].persistent == MICRODVD_PERSISTENT_ON) in microdvd_open_tags() 241 tags[i].persistent = MICRODVD_PERSISTENT_OPENED; in microdvd_open_tags() [all …]
|
/third_party/node/test/addons/callback-scope/ |
D | binding.cc | 40 std::unique_ptr<v8::Global<v8::Promise::Resolver>> persistent { in Callback() local 42 v8::Local<v8::Promise::Resolver> local = persistent->Get(isolate); in Callback() 51 v8::Global<v8::Promise::Resolver>* persistent = in TestResolveAsync() local 58 req->data = static_cast<void*>(persistent); in TestResolveAsync() 65 v8::Local<v8::Promise::Resolver> local = persistent->Get(isolate); in TestResolveAsync()
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
D | u_debug_flush.c | 58 boolean persistent; member 213 boolean map_sync, persistent; in debug_flush_map() local 220 persistent = !map_sync || fbuf->supports_persistent || in debug_flush_map() 236 fbuf->maps[fbuf->map_count].persistent = persistent; in debug_flush_map() 237 if (!persistent) { in debug_flush_map() 247 if (!persistent) { in debug_flush_map() 282 if (!fbuf->maps[i].persistent) { in debug_flush_unmap()
|
/third_party/node/lib/internal/fs/ |
D | watchers.js | 103 persistent, 111 if (!persistent) 229 persistent, 243 persistent, 309 persistent = true, 315 validateBoolean(persistent, 'options.persistent'); 355 const err = handle.start(path, persistent, recursive, encoding);
|
D | recursive_watch.js | 84 const { persistent, recursive, signal, encoding } = options; 91 if (persistent != null) { 92 validateBoolean(persistent, 'options.persistent'); 106 this.#options = { persistent, recursive, signal, encoding }; property 183 persistent: this.#options.persistent, property
|
/third_party/EGL/extensions/EXT/ |
D | EGL_EXT_device_persistent_id.txt | 43 provide a unique, persistent identifier for EGLDeviceEXT handles. 72 that controls the device. This string remains persistent across 108 identifies a physical device, and is persistent across reboots, 111 EGL_DEVICE_UUID_EXT may or may not be persistent across changes in 113 or persistent across different (physical or virtual) computers. 127 in use for a device. The driver UUID is persistent across reboots, 128 processes, and APIs, but is not persistent across driver versions. 157 unique, and EGL_DRIVER_UUID_EXT is not persistent. 160 unique, persistent identifier. 181 UUID's persistent whenever possible, to avoid invalidating [all …]
|
/third_party/mesa3d/src/freedreno/ci/ |
D | freedreno-a630-skips.txt | 59 spec@arb_buffer_storage@bufferstorage-persistent read 60 spec@arb_buffer_storage@bufferstorage-persistent read client-storage 61 spec@arb_buffer_storage@bufferstorage-persistent read coherent 62 spec@arb_buffer_storage@bufferstorage-persistent read coherent client-storage
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
D | README-P2P | 152 [persistent|persistent=<network id>] [join|auth] 166 from local display, keypad=PIN entered from peer display). "persistent" 167 parameter can be used to request a persistent group to be formed. The 168 "persistent=<network id>" alternative can be used to pre-populate 169 SSID/passphrase configuration based on a previously used persistent 212 p2p_connect 02:0a:f5:85:11:00 12345670 p2ps persistent join 215 p2p_connect 02:0a:f5:85:11:00 45629034 keypad persistent 264 p2p_group_add [persistent|persistent=<network id>] [freq=<freq in MHz>] 269 GO. Optional persistent=<network id> can be used to specify restart of 270 a persistent group. Optional freq=<freq in MHz> can be used to force [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
D | README-P2P | 152 [persistent|persistent=<network id>] [join|auth] 166 from local display, keypad=PIN entered from peer display). "persistent" 167 parameter can be used to request a persistent group to be formed. The 168 "persistent=<network id>" alternative can be used to pre-populate 169 SSID/passphrase configuration based on a previously used persistent 212 p2p_connect 02:0a:f5:85:11:00 12345670 p2ps persistent join 215 p2p_connect 02:0a:f5:85:11:00 45629034 keypad persistent 264 p2p_group_add [persistent|persistent=<network id>] [freq=<freq in MHz>] 269 GO. Optional persistent=<network id> can be used to specify restart of 270 a persistent group. Optional freq=<freq in MHz> can be used to force [all …]
|
/third_party/python/Doc/library/ |
D | shelve.rst | 13 A "shelf" is a persistent, dictionary-like object. The difference with "dbm" 22 Open a persistent dictionary. The filename specified is the base filename for 33 persistent-dictionary entry is modified. By default modified objects are 38 the persistent dictionary, but, if many entries are accessed, it can consume 67 transition from dictionary based scripts to those requiring persistent storage. 74 set to :const:`True`. Also empty the cache and synchronize the persistent 80 Synchronize and close the persistent *dict* object. Operations on a closed
|
/third_party/curl/tests/data/ |
D | test146 | 6 persistent connection 23 persistent FTP with different paths
|
D | test183 | 7 persistent connection 28 HTTP GET two URLs over a single proxy with persistent connection
|
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/VK_KHR_display_swapchain/ |
D | display_swapchain_present.adoc | 36 * pname:persistent: If this is ename:VK_TRUE, the display engine will 43 If sname:VkDisplayPresentInfoKHR is not specified, persistent mode will 62 present operation targets is ename:VK_FALSE, then pname:persistent must:
|
D | display_swapchain_present.txt | 37 * pname:persistent: If this is ename:VK_TRUE, the display engine will 44 If sname:VkDisplayPresentInfoKHR is not specified, persistent mode will 63 present operation targets is ename:VK_FALSE, then pname:persistent must:
|
/third_party/typescript/tests/baselines/reference/ |
D | APISample_watcher.js | 23 …watchFile(filename: string, options: { persistent?: boolean; interval?: number; }, listener: (curr… field 65 { persistent: true, interval: 250 }, property 160 fs.watchFile(fileName, { persistent: true, interval: 250 }, function (curr, prev) { property
|