HomeSort by relevance Sort by last modified time
    Searched full:handle_1 (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/media/audio/
cross_process_notification_posix.cc 16 CrossProcessNotification::CrossProcessNotification(IPCHandle handle_1,
18 : socket_(handle_1.fd) {
19 DCHECK_NE(handle_1.fd, -1);
44 IPCHandle* handle_1,
47 handle_1->fd = socket_.handle();
48 handle_1->auto_close = false;
cross_process_notification.h 51 // CrossProcessNotification::IPCHandle handle_1, handle_2;
52 // CHECK(other.ShareToProcess(process_b, &handle_1, &handle_2));
55 // SendToProcessB(mem_, handle_1, handle_2);
72 // CrossProcessNotification::IPCHandle handle_1,
75 // notification_.reset(new CrossProcessNotification(handle_1, handle_2));
100 CrossProcessNotification(IPCHandle handle_1, IPCHandle handle_2);
117 // Copies the internal handles to the output parameters, |handle_1| and
120 bool ShareToProcess(base::ProcessHandle process, IPCHandle* handle_1,
cross_process_notification_win.cc 14 CrossProcessNotification::CrossProcessNotification(IPCHandle handle_1,
16 : mine_(handle_1), other_(handle_2) {
41 IPCHandle* handle_1,
45 if (!::DuplicateHandle(our_process, mine_, process, handle_1, 0, FALSE,
55 ::CloseHandle(*handle_1);
56 *handle_1 = NULL;
cross_process_notification_unittest.cc 375 CrossProcessNotification::IPCHandle handle_1; member in struct:__anon10781::CrudeIpc
408 CrossProcessNotification notifier(ipc->handle_1, ipc->handle_2);
440 base::kNullProcessHandle, &ipc->handle_1, &ipc->handle_2));
442 fd_mapping_vec.push_back(std::make_pair(ipc->handle_1.fd, kPosixChildSocket));
445 ipc->handle_1.fd = kPosixChildSocket;
451 EXPECT_TRUE(b.ShareToProcess(process, &ipc->handle_1, &ipc->handle_2));

Completed in 1217 milliseconds