/third_party/openssl/crypto/engine/ |
H A D | eng_lib.c | 60 e->destroy = NULL; in engine_set_all_null() 92 if (e->destroy) in engine_free_util() 93 e->destroy(e); in engine_free_util() 217 e->destroy = destroy_f; in ENGINE_set_destroy_function() 263 return e->destroy; in ENGINE_get_destroy_function()
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_tooltip.py | 25 root.destroy() 41 testobj.addCleanup(top.destroy) 45 testobj.addCleanup(button.destroy) 57 self.addCleanup(top.destroy) 61 self.addCleanup(button.destroy)
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | common.h | 63 ~node_handle_base() { destroy(); } in ~node_handle_base() 65 destroy(); 93 void destroy() { in destroy() function in absl::container_internal::node_handle_base 95 PolicyTraits::destroy(alloc(), slot()); in destroy() 175 node->destroy(); in Destroy()
|
/third_party/libabigail/tests/data/test-abicompat/ |
H A D | test0-fn-changed-app.cc | 16 libapp::destroy(s0); in main() 17 libapp::destroy(s1); in main()
|
H A D | test0-fn-changed-libapp.h | 15 destroy(S0*); 21 destroy(S1*);
|
H A D | test0-fn-changed-libapp-v0.cc | 51 destroy(S0* s) in destroy() function 59 destroy(S1* s) in destroy() function
|
H A D | test0-fn-changed-libapp-v1.cc | 65 destroy(S0* s) in destroy() function 73 destroy(S1* s) in destroy() function
|
/third_party/node/lib/ |
H A D | _tls_wrap.js | 185 return owner.destroy(new ERR_MULTIPLE_CALLBACK()); 189 return owner.destroy(err); 192 return owner.destroy(new ERR_SOCKET_CLOSED()); 222 return owner.destroy(new ERR_MULTIPLE_CALLBACK()); 226 return owner.destroy(err); 229 return owner.destroy(new ERR_SOCKET_CLOSED()); 307 return socket.destroy(new ERR_MULTIPLE_CALLBACK()); 311 return socket.destroy(err); 314 return socket.destroy(new ERR_SOCKET_CLOSED()); 334 socket.destroy( [all...] |
H A D | _http_client.js | 415 this.destroy(); 418 ClientRequest.prototype.destroy = function destroy(err) { 430 this.socket?.destroy(err); 461 res.destroy(connResetException('aborted')); 513 socket.destroy(); 531 socket.destroy(); 548 socket.destroy(); 587 socket.destroy(); 621 socket.destroy(); [all...] |
H A D | _http_agent.js | 86 socket.destroy(); 129 // TODO(ronag): socket.destroy(err) might have been called 131 // case of socket.destroy() below this 'error' has no handler 135 socket.destroy(); 163 socket.destroy(); 177 socket.destroy(); 395 // TODO(ronag): Always destroy, even if not in free list. 400 return s.destroy(); 501 Agent.prototype.destroy = function destroy() { [all...] |
/foundation/communication/dsoftbus/core/bus_center/lnn/net_buscenter/src/ |
H A D | lnn_physical_subnet_manager.c | 63 if (g_physicalSubnets[i]->destroy != NULL) { in ClearSubnetManager() 64 g_physicalSubnets[i]->destroy(g_physicalSubnets[i]); in ClearSubnetManager() 77 LNN_LOGE(LNN_BUILDER, "destroy mutex failed"); in LnnDeinitPhysicalSubnetManager() 114 if (g_physicalSubnets[i]->destroy != NULL) { in DoUnregistSubnetByType() 115 g_physicalSubnets[i]->destroy(g_physicalSubnets[i]); in DoUnregistSubnetByType()
|
/third_party/ntfs-3g/libfuse-lite/ |
H A D | fuse_session.c | 92 if (se->op.destroy) in fuse_session_destroy() 93 se->op.destroy(se->data); in fuse_session_destroy() 190 if (ch->op.destroy) in fuse_chan_destroy() 191 ch->op.destroy(ch); in fuse_chan_destroy()
|
/third_party/node/deps/openssl/openssl/crypto/bio/ |
H A D | bio_meth.c | 200 return biom->destroy; in BIO_meth_get_destroy() 203 int BIO_meth_set_destroy(BIO_METHOD *biom, int (*destroy) (BIO *)) in BIO_meth_set_destroy() 205 biom->destroy = destroy; in BIO_meth_set_destroy()
|
/third_party/openssl/crypto/bio/ |
H A D | bio_meth.c | 200 return biom->destroy; in BIO_meth_get_destroy() 203 int BIO_meth_set_destroy(BIO_METHOD *biom, int (*destroy) (BIO *)) in BIO_meth_set_destroy() 205 biom->destroy = destroy; in BIO_meth_set_destroy()
|
/third_party/python/Lib/tkinter/test/ |
H A D | support.py | 26 cls.root.destroy() 36 w.destroy() 59 x.destroy() 69 tkinter._default_root.destroy()
|
/third_party/node/lib/internal/streams/ |
H A D | pipeline.js | 15 const destroyImpl = require('internal/streams/destroy'); 61 destroy: (err) => { 261 const { destroy, cleanup } = destroyer(stream, reading, writing); 262 destroys.push(destroy); 342 pt.destroy(err); 360 const { destroy, cleanup } = destroyer(ret, false, true); 361 destroys.push(destroy);
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_cache.c | 72 void (*destroy)(void *key, void *value); member 100 void (*destroy)(void *key, void *value), in util_cache_create() 111 cache->destroy = destroy; in util_cache_create() 183 if (cache->destroy) in util_cache_entry_destroy() 184 cache->destroy(key, value); in util_cache_entry_destroy() 258 * Remove all entries from the cache. The 'destroy' function will be called
|
H A D | u_vertex_state_cache.h | 42 pipe_vertex_state_destroy_func destroy; member 48 pipe_vertex_state_destroy_func destroy);
|
/third_party/pulseaudio/speex/libspeexdsp/ |
H A D | jitter.c | 146 void (*destroy) (void *); /**< Callback for destroying a packet */ member 284 jitter->destroy = NULL; in jitter_buffer_init() 302 if (jitter->destroy) in jitter_buffer_reset() 303 jitter->destroy(jitter->packets[i].data); in jitter_buffer_reset() 381 if (jitter->destroy) in jitter_buffer_put() 382 jitter->destroy(jitter->packets[i].data); in jitter_buffer_put() 431 if (jitter->destroy) in jitter_buffer_put() 432 jitter->destroy(jitter->packets[i].data); in jitter_buffer_put() 440 if (jitter->destroy) in jitter_buffer_put() 591 if (jitter->destroy) in jitter_buffer_get() [all...] |
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/ |
H A D | QueueSubmitValidationTests.cpp | 247 for (bool destroy : {true, false}) { in TEST_F() 257 if (destroy) { in TEST_F() 266 for (bool destroy : {true, false}) { in TEST_F() 283 if (destroy) { in TEST_F() 316 for (bool destroy : {true, false}) { in TEST_F() 327 if (destroy) { in TEST_F() 336 for (bool destroy : {true, false}) { in TEST_F() 356 if (destroy) { in TEST_F()
|
/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/ |
H A D | intf_plugin.h | 42 constexpr I3DPlugin(CreatePluginFn create, DestroyPluginFn destroy) in I3DPlugin() 43 : ITypeInfo { UID }, createPlugin { create }, destroyPlugin { destroy } in I3DPlugin()
|
/third_party/node/benchmark/http/ |
H A D | cluster.js | 39 w1.destroy(); 40 w2.destroy();
|
/third_party/mesa3d/src/gallium/auxiliary/vl/ |
H A D | vl_winsys_dri_vgem.c | 37 vscreen->pscreen->destroy(vscreen->pscreen); in vl_vgem_drm_screen_destroy() 57 vscreen->destroy = vl_vgem_drm_screen_destroy; in vl_vgem_drm_screen_create()
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | VkDestroy.hpp | 50 // we use this function, which calls the T:destroy() function then the T 52 // VkObjectBase::destroy does nothing). 54 inline void destroy(VkT vkObject, const VkAllocationCallbacks *pAllocator) in destroy() function 60 object->destroy(pAllocator); in destroy()
|
/third_party/python/Lib/tkinter/test/test_tkinter/ |
H A D | test_simpledialog.py | 17 w.destroy() 28 root.destroy()
|