/external/chromium_org/mojo/public/bindings/generators/cpp_templates/ |
proxy_implementation | 14 mojo::internal::EncodePointersAndHandles(params, &message.handles);
|
template_declaration | 8 std::vector<mojo::Handle>* handles);
|
/external/chromium_org/ppapi/api/private/ |
pp_file_handle.idl | 7 * This file provides support for native OS file handles.
|
/external/chromium_org/mojo/public/system/ |
core_private.h | 26 virtual MojoResult WaitMany(const MojoHandle* handles, 35 const MojoHandle* handles, 41 MojoHandle* handles,
|
core_cpp.h | 127 inline MojoResult WaitMany(const HandleVectorType& handles, 130 if (flags.size() != handles.size()) 132 if (handles.size() > std::numeric_limits<uint32_t>::max()) 135 if (handles.size() == 0) 138 const Handle& first_handle = handles[0]; 142 static_cast<uint32_t>(handles.size()), 197 // ownership of handles (especially when writing messages). 202 const MojoHandle* handles, uint32_t num_handles, 206 handles, num_handles, 212 MojoHandle* handles, uint32_t* num_handles [all...] |
/external/chromium_org/mojo/public/tests/ |
bindings_connector_unittest.cc | 174 // Enable this test once MojoWriteMessage supports passing handles. 184 ScopedMessagePipeHandle handles[2]; local 185 CreateMessagePipe(&handles[0], &handles[1]); 186 message.handles.push_back(handles[0].release()); 190 // The message should have been transferred, releasing the handles. 191 EXPECT_TRUE(message.handles.empty()); 206 ASSERT_EQ(1U, message_received.handles.size()); 212 smph.reset(MessagePipeHandle(message_received.handles[0].value())) [all...] |
system_core_cpp_unittest.cc | 221 MojoHandle handles[5]; local 222 handles[0] = h_3.release().value(); 223 EXPECT_NE(kInvalidHandleValue, handles[0]); 229 handles, handles_count, 231 // |handles[0]| should actually be invalid now. 232 EXPECT_EQ(MOJO_RESULT_INVALID_ARGUMENT, MojoClose(handles[0])); 240 for (size_t i = 0; i < MOJO_ARRAYSIZE(handles); i++) 241 handles[i] = kInvalidHandleValue; 242 handles_count = static_cast<uint32_t>(MOJO_ARRAYSIZE(handles)); 246 handles, &handles_count [all...] |
/external/chromium_org/mojo/system/ |
core_impl.cc | 33 // Some objects have multiple handles associated to them, e.g., message pipes 42 // |Dispatcher|s for the handles that it wants to wait on with a |Waiter| 68 // concurrency semantics of |MojoWriteMessage()| when passing handles.) 125 MojoResult CoreImpl::WaitMany(const MojoHandle* handles, 129 if (!VerifyUserPointer<MojoHandle>(handles, num_handles)) 137 return WaitManyInternal(handles, flags, num_handles, deadline); 179 const MojoHandle* handles, 186 // Easy case: not sending any handles. 190 // We have to handle |handles| here, since we have to mark them busy in the 194 // (This leads to an oddity: |handles|/|num_handles| are always verified fo [all...] |
/external/chromium_org/sandbox/win/src/ |
handle_closer.h | 20 // target process. A null set means we need to close all handles of the 41 // Adds handles to close after lockdown. 47 // A NULL value for handle_name indicates all handles of the specified type. 54 // Adds any interceptions that may be required due to closed system handles. 58 // Calculates the memory needed to copy the serialized handles list (rounded
|
/external/chromium_org/base/ |
sync_socket_posix.cc | 72 Handle handles[2] = { kInvalidHandle, kInvalidHandle }; local 73 if (socketpair(AF_UNIX, SOCK_STREAM, 0, handles) != 0) { 74 CloseHandle(handles[0]); 75 CloseHandle(handles[1]); 82 if (0 != setsockopt(handles[0], SOL_SOCKET, SO_NOSIGPIPE, 84 0 != setsockopt(handles[1], SOL_SOCKET, SO_NOSIGPIPE, 86 CloseHandle(handles[0]); 87 CloseHandle(handles[1]); 92 // Copy the handles out for successful return. 93 socket_a->handle_ = handles[0] [all...] |
/external/chromium_org/ppapi/proxy/ |
resource_message_params.h | 27 // Note that the caller doesn't take ownership of the returned handles. 28 const std::vector<SerializedHandle>& handles() const { function in class:ppapi::proxy::ResourceMessageParams 32 // Makes ResourceMessageParams leave its handles open, even if they weren't 46 // Helper functions to return shared memory, socket or file handles passed in 65 std::vector<base::SharedMemoryHandle>* handles) const; 67 // Appends the given handle to the list of handles sent with the call or 78 // Writes everything except the handles to |msg|. 80 // Writes the handles to |msg|. 99 // Whether the handles stored in |data_| should be closed when this object 105 // ResourceMessageReplyParams) will close those handles which haven't bee [all...] |
/external/chromium_org/sync/engine/ |
sync_directory_update_handler.cc | 65 std::vector<int64> handles; local 69 &handles); 73 applicator.AttemptApplications(&trans, handles); 89 handles.clear(); 93 &handles); 96 conflict_applicator.AttemptApplications(&trans, handles);
|
/external/chromium_org/ui/views/touchui/ |
touch_selection_controller_impl.h | 18 // displaying selection handles and menu elements relevant in a touch interface. 61 // handles appropriately. 93 // selection handles are being updated. It appears only when the handles are 104 // position of handles which might be invalid when handles are hidden.
|
/external/chromium_org/base/win/ |
scoped_process_information.h | 17 // Manages the closing of process and thread handles from PROCESS_INFORMATION 28 // Closes the held thread and process handles, if any. 34 // Populates this instance with duplicate handles and the thread/process IDs
|
/external/chromium_org/remoting/host/win/ |
launch_process_with_token.h | 20 // This lock should be taken when creating handles that will be inherited by 21 // a child process. Without it the child process can inherit handles created for 33 // any inheritable handles are open.
|
/external/chromium/chrome/browser/chromeos/login/ |
mock_screen_observer.h | 16 // Interface that handles notifications received from any of login wizard
|
/external/chromium/chrome/browser/ui/cocoa/find_bar/ |
find_bar_view.h | 13 // A view that handles painting the border for the FindBar.
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/ |
README.chromium | 11 Guide. The linter handles style issues so that you can focus on the code.
|
/external/chromium_org/ash/system/keyboard_brightness/ |
keyboard_brightness_control_delegate.h | 19 // Handles an accelerator-driven request to decrease or increase the keyboard
|
/external/chromium_org/chrome/browser/component_updater/ |
background_downloader_win.h | 46 // Handles the job state transitions to a final state. 52 // Handles the transition to a transient state where the job is in the 56 // Handles the job state transition to a transient, non-final error state. 59 // Handles the job state corresponding to transferring data.
|
/external/chromium_org/chrome/browser/policy/ |
configuration_policy_handler_android.h | 18 // Handles the ManagedBookmarks policy.
|
javascript_policy_handler.h | 17 // Handles JavaScript policies.
|
url_blacklist_policy_handler.h | 19 // Handles URLBlacklist policies.
|
/external/chromium_org/chrome/browser/resources/options/ |
geolocation_options.js | 10 * Handles initialization of the geolocation options.
|
/external/chromium_org/chrome/browser/sessions/ |
restore_on_startup_policy_handler.h | 17 // Handles RestoreOnStartup policy.
|