/external/chromium_org/ppapi/proxy/ |
handle_converter.cc | 34 typedef std::vector<ppapi::proxy::SerializedHandle> Handles; 40 Handles* handles, 43 handles->push_back(handle); 55 Handles* handles, 63 handles->push_back(*var_handles[i]); 69 // the handles are carried inside the ResourceMessageReplyParams. 70 // NOTE: We only translate handles from host->NaCl. The only kind of 75 Handles* handles [all...] |
handle_converter.h | 28 // Convert the native handles in |msg| to NaCl style. 34 // In either case, all the handles in |msg| are extracted into |handles| so 35 // that they can be converted to NaClDesc handles. 38 std::vector<SerializedHandle>* handles, 45 // message, otherwise HandleConverter won't be able to convert handles in 52 // and potentially translate handles in the message.
|
/art/test/080-oom-throw/ |
info.txt | 2 the JIT'ed code handles OOM exception correctly since it cannot fall back to
|
/art/test/081-hot-exceptions/ |
info.txt | 1 Make a hot exception-throwing path to stress test how the trace builder handles
|
/dalvik/tests/080-oom-throw/ |
info.txt | 2 the JIT'ed code handles OOM exception correctly since it cannot fall back to
|
/dalvik/tests/081-hot-exceptions/ |
info.txt | 1 Make a hot exception-throwing path to stress test how the trace builder handles
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
sample_doctest_no_docstrings.py | 3 # This module is for testing how doctest handles a module with no
|
sample_doctest_no_doctests.py | 3 This module is for testing how doctest handles a module with docstrings
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
sample_doctest_no_docstrings.py | 3 # This module is for testing how doctest handles a module with no
|
sample_doctest_no_doctests.py | 3 This module is for testing how doctest handles a module with docstrings
|
/external/chromium/base/ |
sync_socket_win.cc | 36 Handle handles[2]; local 58 handles[0] = CreateNamedPipeW( 67 if (handles[0] == INVALID_HANDLE_VALUE && 72 } while (handles[0] == INVALID_HANDLE_VALUE); 73 handles[1] = CreateFileW(name, 81 if (handles[1] == INVALID_HANDLE_VALUE) { 82 CloseHandle(handles[0]); 85 if (ConnectNamedPipe(handles[0], NULL) == FALSE) { 88 CloseHandle(handles[0]); 89 CloseHandle(handles[1]) [all...] |
sync_socket_posix.cc | 30 Handle handles[2] = { kInvalidHandle, kInvalidHandle }; local 45 if (socketpair(AF_UNIX, SOCK_STREAM, 0, handles) != 0) { 51 if (0 != setsockopt(handles[0], SOL_SOCKET, SO_NOSIGPIPE, 53 0 != setsockopt(handles[1], SOL_SOCKET, SO_NOSIGPIPE, 58 // Copy the handles out for successful return. 59 tmp_sockets[0]->handle_ = handles[0]; 61 tmp_sockets[1]->handle_ = handles[1]; 66 if (handles[0] != kInvalidHandle) { 67 if (HANDLE_EINTR(close(handles[0])) < 0) 70 if (handles[1] != kInvalidHandle) [all...] |
/external/v8/src/ |
global-handles.h | 38 // Structure for tracking global handles. 39 // A single list keeps all the allocated global handles. 40 // Destroyed handles stay in the list but is added to the free list. 41 // At GC the destroyed global handles are removed from the free list 49 static ObjectGroup* New(Object*** handles, 57 CopyWords(group->objects_, handles, static_cast<int>(length)); 125 // handles point to an object the handles are cleared and the callback 135 // Returns the current number of weak handles. 140 // Returns the current number of weak handles to global objects [all...] |
/external/chromium_org/chrome/browser/task_manager/ |
os_resource_win.h | 12 // Get the current number of GDI handles in use (and peak on >= Win7+). 17 // Get the current number of USER handles in use (and peak on >= Win7).
|
/external/chromium_org/base/ |
sync_socket_posix.cc | 50 Handle handles[2] = { kInvalidHandle, kInvalidHandle }; local 51 if (socketpair(AF_UNIX, SOCK_STREAM, 0, handles) != 0) 57 if (0 != setsockopt(handles[0], SOL_SOCKET, SO_NOSIGPIPE, 59 0 != setsockopt(handles[1], SOL_SOCKET, SO_NOSIGPIPE, 65 // Copy the handles out for successful return. 66 socket_a->handle_ = handles[0]; 67 socket_b->handle_ = handles[1]; 72 if (handles[0] != kInvalidHandle) { 73 if (HANDLE_EINTR(close(handles[0])) < 0) 76 if (handles[1] != kInvalidHandle) [all...] |
/external/dropbear/ |
filelist.txt | 11 session.c Contains the main select() loop, and handles setting 23 packet.c Handles the basic packet encryption/decryption, 27 service.c Handles service requests (userauth or connection) 36 authpasswd.c Handles /etc/passwd or /etc/shadow auth 38 authpubkey.c Handles ~/.ssh/authorized_keys auth 47 chansession.c Handles shell/exec requests 53 loginrec.c From OpenSSH, handles utmp/wtmp logging 55 x11fwd.c Handles X11 forwarding 57 agentfwd.c Handles auth-agent forwarding requests 59 localtcpfwd.c Handles -L style tcp forwarding requests, settin [all...] |
/dalvik/dx/tests/122-switch-with-high-register/ |
info.txt | 1 This test ensures that dx correctly handles switches on data in a high
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
fullscreen_exit_bubble_view.h | 10 // A view that handles painting the background for the Fullscreen Exit Bubble.
|
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/ |
network_dropdown_handler.h | 45 // Handles choosing of the network menu item. 47 // Handles network drop-down showing. 50 // Handles network drop-down hiding. 52 // Handles network drop-down refresh.
|
/external/libffi/ |
configure.host | 3 # This shell script handles all host based configuration for libffi.
|
/external/llvm/test/YAMLParser/ |
spec-07-08.data | 6 # Named handles have no default:
|
/external/chromium_org/chrome/browser/ui/webui/extensions/ |
install_extension_handler.h | 19 // Handles installing an extension when its file is dragged onto the page. 31 // Handles a notification from the JavaScript that a drag has started. This is 37 // Handles a notification from the JavaScript that a drag has stopped. 40 // Handles a notification from the JavaScript to install the file currently 48 // Handles a notification from the JavaScript to install the directory
|
/external/chromium_org/v8/src/ |
global-handles.h | 34 #include "handles.h" 45 // Structure for tracking global handles. 46 // A single list keeps all the allocated global handles. 47 // Destroyed handles stay in the list but is added to the free list. 48 // At GC the destroyed global handles are removed from the free list 138 // handles point to an object the handles are cleared and the callback 148 // Returns the current number of weak handles. 151 // Returns the current number of weak handles to global objects. 152 // These handles are also included in NumberOfWeakHandles() [all...] |
/external/chromium_org/gpu/command_buffer/service/ |
safe_shared_memory_pool.cc | 123 LOG(ERROR) << "Total handles acquired " << handles_acquired_; 124 LOG(ERROR) << "Total handles open " << handles_consumed_; 126 LOG(ERROR) << "Max handles acquired " << max_handles_acquired_; 127 LOG(ERROR) << "Max handles open " << max_handles_consumed_; 137 LOG(ERROR) << "Total handles acquired " << handles_acquired_; 138 LOG(ERROR) << "Total handles open " << handles_consumed_; 140 LOG(ERROR) << "Max handles acquired " << max_handles_acquired_; 141 LOG(ERROR) << "Max handles open " << max_handles_consumed_;
|
/external/chromium_org/remoting/host/win/ |
window_station_and_desktop.h | 14 // Scoper for a pair of window station and desktop handles. Both handles are
|