/prebuilts/clang/host/linux-x86/clang-4691093/lib64/clang/6.0.2/include/sanitizer/ |
lsan_interface.h | 50 // By calling this function early during process shutdown, you can instruct 51 // LSan to ignore shutdown-only leaks which happen later on.
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
mspaddr.h | 139 STDMETHOD (Shutdown) (); 265 HRESULT hr = pMSPCall->ShutDown();
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_imaplib.py | 137 server.shutdown() 153 client.shutdown()
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_imaplib.py | 137 server.shutdown() 153 client.shutdown()
|
/prebuilts/go/darwin-x86/src/net/http/ |
example_test.go | 126 if err := srv.Shutdown(context.Background()); err != nil { 128 log.Printf("HTTP server Shutdown: %v", err)
|
/prebuilts/go/linux-x86/src/net/http/ |
example_test.go | 126 if err := srv.Shutdown(context.Background()); err != nil { 128 log.Printf("HTTP server Shutdown: %v", err)
|
/prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/ |
ChannelIO.java | 171 * Start any connection shutdown processing. 178 boolean shutdown() throws IOException { method in class:ChannelIO
|
/prebuilts/jdk/jdk8/linux-x86/sample/nio/server/ |
ChannelIO.java | 171 * Start any connection shutdown processing. 178 boolean shutdown() throws IOException { method in class:ChannelIO
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_imaplib.py | 137 server.shutdown() 153 client.shutdown()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_imaplib.py | 137 server.shutdown() 153 client.shutdown()
|
/prebuilts/vndk/v27/arm/arch-arm-armv7-a-neon/shared/vndk-sp/ |
libcutils.so | |
/prebuilts/vndk/v27/arm64/arch-arm-armv7-a-neon/shared/vndk-sp/ |
libcutils.so | |
/system/bt/btcore/src/ |
module.cc | 107 "%s Failed to shutdown module \"%s\". Continuing anyway.", 110 LOG_INFO(LOG_TAG, "%s Shutdown of module \"%s\" completed", __func__,
|
/system/bt/btif/include/ |
btif_a2dp_sink.h | 72 // Shutdown the A2DP Sink module. 74 // btif_a2dp_sink_cleanup() to shutdown the processing of the audio streaming.
|
/system/bt/btif/src/ |
stack_manager.cc | 144 // Include this for now to put btif config into a shutdown-able state 150 stack_is_running = true; // So stack shutdown actually happens
|
/system/bt/service/ipc/ |
ipc_handler_linux.cc | 122 // syscall. Shutdown and close the server socket before joining the thread to 124 shutdown(socket_.get(), SHUT_RDWR);
|
/system/chre/host/common/ |
socket_client.cc | 58 // Inform the RX thread that we're requesting a shutdown, breaking it out of 68 if (mSockFd != INVALID_SOCKET && shutdown(mSockFd, SHUT_RDWR) != 0) {
|
/system/extras/boottime_tools/bootanalyze/stressfs/src/com/android/car/test/stressfs/ |
WritingService.java | 35 * Used to stress the file writing before and during shutdown to help ensure 57 * shutdown sequence in a manner that does not corrupt so that this check can
|
/system/vold/ |
VolumeManager.h | 105 /* Prepare for device shutdown, safely unmounting all devices */ 106 int shutdown();
|
vdc.cpp | 100 } else if (args[0] == "volume" && args[1] == "shutdown") { 101 checkStatus(vold->shutdown());
|
/external/autotest/client/tests/xmtest/ |
xm-test.tar.bz2 | |
/external/boringssl/src/crypto/bio/ |
bio.c | 80 ret->shutdown = 1; 629 void BIO_set_shutdown(BIO *bio, int shutdown) { bio->shutdown = shutdown; } 631 int BIO_get_shutdown(BIO *bio) { return bio->shutdown; }
|
connect.c | 333 // Only do a shutdown if things were established 335 shutdown(bio->num, 2); 346 if (bio->shutdown) { 460 ret = bio->shutdown; 463 bio->shutdown = (int)num;
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
AbstractExecutorServiceTest.java | 51 public void shutdown() { shutdown = true; } method in class:AbstractExecutorServiceTest.DirectExecutorService 53 shutdown = true; 56 public boolean isShutdown() { return shutdown; } 61 private volatile boolean shutdown = false; field in class:AbstractExecutorServiceTest.DirectExecutorService
|
/external/libchrome/base/synchronization/ |
condition_variable_unittest.cc | 87 bool shutdown() const; // Check if shutdown has been requested. 142 int shutdown_task_count_; // Number of tasks told to shutdown 158 // First try trivial startup/shutdown. 395 queue.work_is_available()->Broadcast(); // Force check for shutdown. 485 queue.work_is_available()->Broadcast(); // Force check for shutdown. 572 bool WorkQueue::shutdown() const { function in class:base::__anon24336::WorkQueue 731 while (0 == task_count() && !shutdown()) { 736 if (shutdown()) { 737 // Ack the notification of a shutdown message back to the controller [all...] |