Searched refs:ipc (Results 1 - 25 of 192) sorted by relevance

12345678

/external/fio/
H A Didletime.c5 static volatile struct idle_prof_common ipc; variable in typeref:struct:idle_prof_common
29 if (ipc.status == IDLE_PROF_STATUS_PROF_STOP)
76 if (ipc.status == IDLE_PROF_STATUS_ABORT) {
114 if (ipc.status == IDLE_PROF_STATUS_ABORT) {
120 if (ipc.status == IDLE_PROF_STATUS_CALI_STOP) {
132 if (ipc.status == IDLE_PROF_STATUS_PROF_STOP) {
156 for (i = 0; i < ipc.nr_cpus; i++) {
157 ipt = &ipc.ipts[i];
161 ipc.cali_mean = sum/ipc
[all...]
/external/chromium_org/sandbox/win/src/
H A Dprocess_thread_dispatcher.h26 bool NtOpenThread(IPCInfo* ipc, DWORD desired_access, DWORD thread_id);
29 bool NtOpenProcess(IPCInfo* ipc, DWORD desired_access, DWORD process_id);
32 bool NtOpenProcessToken(IPCInfo* ipc, HANDLE process, DWORD desired_access);
35 bool NtOpenProcessTokenEx(IPCInfo* ipc, HANDLE process, DWORD desired_access,
39 bool CreateProcessW(IPCInfo* ipc,
H A Dcrosscall_server.h179 typedef bool (Dispatcher::*Callback0)(IPCInfo* ipc);
180 typedef bool (Dispatcher::*Callback1)(IPCInfo* ipc, void* p1);
181 typedef bool (Dispatcher::*Callback2)(IPCInfo* ipc, void* p1, void* p2);
182 typedef bool (Dispatcher::*Callback3)(IPCInfo* ipc, void* p1, void* p2,
184 typedef bool (Dispatcher::*Callback4)(IPCInfo* ipc, void* p1, void* p2,
186 typedef bool (Dispatcher::*Callback5)(IPCInfo* ipc, void* p1, void* p2,
188 typedef bool (Dispatcher::*Callback6)(IPCInfo* ipc, void* p1, void* p2,
190 typedef bool (Dispatcher::*Callback7)(IPCInfo* ipc, void* p1, void* p2,
193 typedef bool (Dispatcher::*Callback8)(IPCInfo* ipc, void* p1, void* p2,
196 typedef bool (Dispatcher::*Callback9)(IPCInfo* ipc, voi
[all...]
H A Dsync_dispatcher.cc45 bool SyncDispatcher::CreateEvent(IPCInfo* ipc, base::string16* name, argument
55 ipc->return_info.nt_status = SyncPolicy::CreateEventAction(
56 result, *ipc->client_info, *name, event_type, initial_state, &handle);
57 ipc->return_info.handle = handle;
61 bool SyncDispatcher::OpenEvent(IPCInfo* ipc, base::string16* name, argument
73 ipc->return_info.nt_status = SyncPolicy::OpenEventAction(
74 result, *ipc->client_info, *name, desired_access, &handle);
75 ipc->return_info.handle = handle;
H A Dfilesystem_dispatcher.cc86 IPCInfo* ipc, base::string16* name, DWORD attributes, DWORD desired_access,
91 ipc->return_info.nt_status = STATUS_ACCESS_DENIED;
112 if (!FileSystemPolicy::CreateFileAction(result, *ipc->client_info, *name,
118 ipc->return_info.nt_status = STATUS_ACCESS_DENIED;
122 ipc->return_info.extended[0].ulong_ptr = io_information;
123 ipc->return_info.nt_status = nt_status;
124 ipc->return_info.handle = handle;
129 IPCInfo* ipc, base::string16* name, DWORD attributes, DWORD desired_access,
133 ipc->return_info.nt_status = STATUS_ACCESS_DENIED;
154 if (!FileSystemPolicy::OpenFileAction(result, *ipc
85 NtCreateFile( IPCInfo* ipc, base::string16* name, DWORD attributes, DWORD desired_access, DWORD file_attributes, DWORD share_access, DWORD create_disposition, DWORD create_options) argument
128 NtOpenFile( IPCInfo* ipc, base::string16* name, DWORD attributes, DWORD desired_access, DWORD share_access, DWORD open_options) argument
168 NtQueryAttributesFile( IPCInfo* ipc, base::string16* name, DWORD attributes, CountedBuffer* info) argument
206 NtQueryFullAttributesFile( IPCInfo* ipc, base::string16* name, DWORD attributes, CountedBuffer* info) argument
246 NtSetInformationFile( IPCInfo* ipc, HANDLE handle, CountedBuffer* status, CountedBuffer* info, DWORD length, DWORD info_class) argument
[all...]
H A Dregistry_dispatcher.cc78 IPCInfo* ipc, base::string16* name, DWORD attributes, HANDLE root,
86 if (!::DuplicateHandle(ipc->client_info->process, root,
108 if (!RegistryPolicy::CreateKeyAction(result, *ipc->client_info, *name,
112 ipc->return_info.nt_status = STATUS_ACCESS_DENIED;
117 ipc->return_info.extended[0].unsigned_int = disposition;
118 ipc->return_info.nt_status = nt_status;
119 ipc->return_info.handle = handle;
123 bool RegistryDispatcher::NtOpenKey(IPCInfo* ipc, base::string16* name, argument
132 if (!::DuplicateHandle(ipc->client_info->process, root,
151 if (!RegistryPolicy::OpenKeyAction(result, *ipc
77 NtCreateKey( IPCInfo* ipc, base::string16* name, DWORD attributes, HANDLE root, DWORD desired_access, DWORD title_index, DWORD create_options) argument
[all...]
H A Dfilesystem_dispatcher.h26 bool NtCreateFile(IPCInfo* ipc, base::string16* name, DWORD attributes,
32 bool NtOpenFile(IPCInfo* ipc, base::string16* name, DWORD attributes,
38 bool NtQueryAttributesFile(IPCInfo* ipc, base::string16* name,
44 bool NtQueryFullAttributesFile(IPCInfo* ipc, base::string16* name,
49 bool NtSetInformationFile(IPCInfo* ipc, HANDLE handle,
H A Dprocess_thread_dispatcher.cc158 bool ThreadProcessDispatcher::NtOpenThread(IPCInfo* ipc, DWORD desired_access, argument
161 NTSTATUS ret = ProcessPolicy::OpenThreadAction(*ipc->client_info,
164 ipc->return_info.nt_status = ret;
165 ipc->return_info.handle = handle;
169 bool ThreadProcessDispatcher::NtOpenProcess(IPCInfo* ipc, DWORD desired_access, argument
172 NTSTATUS ret = ProcessPolicy::OpenProcessAction(*ipc->client_info,
175 ipc->return_info.nt_status = ret;
176 ipc->return_info.handle = handle;
180 bool ThreadProcessDispatcher::NtOpenProcessToken(IPCInfo* ipc, HANDLE process, argument
183 NTSTATUS ret = ProcessPolicy::OpenProcessTokenAction(*ipc
191 NtOpenProcessTokenEx(IPCInfo* ipc, HANDLE process, DWORD desired_access, DWORD attributes) argument
204 CreateProcessW(IPCInfo* ipc, base::string16* name, base::string16* cmd_line, base::string16* cur_dir, CountedBuffer* info) argument
[all...]
H A Dhandle_dispatcher.cc42 bool HandleDispatcher::DuplicateHandleProxy(IPCInfo* ipc, argument
53 if (!::DuplicateHandle(ipc->client_info->process, source_handle,
56 ipc->return_info.win32_result = ::GetLastError();
70 ipc->return_info.nt_status = error;
81 ipc->return_info.win32_result =
84 &ipc->return_info.handle,
H A Dnamed_pipe_dispatcher.cc44 IPCInfo* ipc, base::string16* name, DWORD open_mode, DWORD pipe_mode,
47 ipc->return_info.win32_result = ERROR_ACCESS_DENIED;
48 ipc->return_info.handle = INVALID_HANDLE_VALUE;
82 DWORD ret = NamedPipePolicy::CreateNamedPipeAction(eval, *ipc->client_info,
89 ipc->return_info.win32_result = ret;
90 ipc->return_info.handle = pipe;
43 CreateNamedPipe( IPCInfo* ipc, base::string16* name, DWORD open_mode, DWORD pipe_mode, DWORD max_instances, DWORD out_buffer_size, DWORD in_buffer_size, DWORD default_timeout) argument
H A Dhandle_interception.cc27 SharedMemIPCClient ipc(memory);
29 ResultCode code = CrossCall(ipc, IPC_DUPLICATEHANDLEPROXY_TAG,
H A Dregistry_dispatcher.h26 bool NtCreateKey(IPCInfo* ipc, base::string16* name, DWORD attributes,
31 bool NtOpenKey(IPCInfo* ipc, base::string16* name, DWORD attributes,
H A Dsync_dispatcher.h26 bool CreateEvent(IPCInfo* ipc, base::string16* name, DWORD event_type,
30 bool OpenEvent(IPCInfo* ipc, base::string16* name, DWORD desired_access);
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
H A DConnectionEventTest.java38 Impl_PooledConnection ipc = new Impl_PooledConnection();
39 ConnectionEvent ce = new ConnectionEvent(ipc);
40 assertSame(ipc, ce.getSource());
51 Impl_PooledConnection ipc = new Impl_PooledConnection();
52 ConnectionEvent ce = new ConnectionEvent(ipc, null);
53 assertSame(ipc, ce.getSource());
57 ce = new ConnectionEvent(ipc, e);
58 assertSame(ipc, ce.getSource());
66 Impl_PooledConnection ipc = new Impl_PooledConnection();
68 ConnectionEvent ce = new ConnectionEvent(ipc,
[all...]
/external/chromium_org/ipc/
H A Dipc.target.darwin-arm.mk26 ipc/file_descriptor_set_posix.cc \
27 ipc/ipc_channel.cc \
28 ipc/ipc_channel_factory.cc \
29 ipc/ipc_channel_common.cc \
30 ipc/ipc_channel_posix.cc \
31 ipc/ipc_channel_proxy.cc \
32 ipc/ipc_channel_reader.cc \
33 ipc/ipc_forwarding_message_filter.cc \
34 ipc/ipc_logging.cc \
35 ipc/ipc_messag
[all...]
H A Dipc.target.darwin-arm64.mk26 ipc/file_descriptor_set_posix.cc \
27 ipc/ipc_channel.cc \
28 ipc/ipc_channel_factory.cc \
29 ipc/ipc_channel_common.cc \
30 ipc/ipc_channel_posix.cc \
31 ipc/ipc_channel_proxy.cc \
32 ipc/ipc_channel_reader.cc \
33 ipc/ipc_forwarding_message_filter.cc \
34 ipc/ipc_logging.cc \
35 ipc/ipc_messag
[all...]
H A Dipc.target.darwin-mips.mk26 ipc/file_descriptor_set_posix.cc \
27 ipc/ipc_channel.cc \
28 ipc/ipc_channel_factory.cc \
29 ipc/ipc_channel_common.cc \
30 ipc/ipc_channel_posix.cc \
31 ipc/ipc_channel_proxy.cc \
32 ipc/ipc_channel_reader.cc \
33 ipc/ipc_forwarding_message_filter.cc \
34 ipc/ipc_logging.cc \
35 ipc/ipc_messag
[all...]
H A Dipc.target.darwin-mips64.mk26 ipc/file_descriptor_set_posix.cc \
27 ipc/ipc_channel.cc \
28 ipc/ipc_channel_factory.cc \
29 ipc/ipc_channel_common.cc \
30 ipc/ipc_channel_posix.cc \
31 ipc/ipc_channel_proxy.cc \
32 ipc/ipc_channel_reader.cc \
33 ipc/ipc_forwarding_message_filter.cc \
34 ipc/ipc_logging.cc \
35 ipc/ipc_messag
[all...]
H A Dipc.target.darwin-x86.mk26 ipc/file_descriptor_set_posix.cc \
27 ipc/ipc_channel.cc \
28 ipc/ipc_channel_factory.cc \
29 ipc/ipc_channel_common.cc \
30 ipc/ipc_channel_posix.cc \
31 ipc/ipc_channel_proxy.cc \
32 ipc/ipc_channel_reader.cc \
33 ipc/ipc_forwarding_message_filter.cc \
34 ipc/ipc_logging.cc \
35 ipc/ipc_messag
[all...]
H A Dipc.target.darwin-x86_64.mk26 ipc/file_descriptor_set_posix.cc \
27 ipc/ipc_channel.cc \
28 ipc/ipc_channel_factory.cc \
29 ipc/ipc_channel_common.cc \
30 ipc/ipc_channel_posix.cc \
31 ipc/ipc_channel_proxy.cc \
32 ipc/ipc_channel_reader.cc \
33 ipc/ipc_forwarding_message_filter.cc \
34 ipc/ipc_logging.cc \
35 ipc/ipc_messag
[all...]
H A Dipc.target.linux-arm.mk26 ipc/file_descriptor_set_posix.cc \
27 ipc/ipc_channel.cc \
28 ipc/ipc_channel_factory.cc \
29 ipc/ipc_channel_common.cc \
30 ipc/ipc_channel_posix.cc \
31 ipc/ipc_channel_proxy.cc \
32 ipc/ipc_channel_reader.cc \
33 ipc/ipc_forwarding_message_filter.cc \
34 ipc/ipc_logging.cc \
35 ipc/ipc_messag
[all...]
H A Dipc.target.linux-arm64.mk26 ipc/file_descriptor_set_posix.cc \
27 ipc/ipc_channel.cc \
28 ipc/ipc_channel_factory.cc \
29 ipc/ipc_channel_common.cc \
30 ipc/ipc_channel_posix.cc \
31 ipc/ipc_channel_proxy.cc \
32 ipc/ipc_channel_reader.cc \
33 ipc/ipc_forwarding_message_filter.cc \
34 ipc/ipc_logging.cc \
35 ipc/ipc_messag
[all...]
H A Dipc.target.linux-mips.mk26 ipc/file_descriptor_set_posix.cc \
27 ipc/ipc_channel.cc \
28 ipc/ipc_channel_factory.cc \
29 ipc/ipc_channel_common.cc \
30 ipc/ipc_channel_posix.cc \
31 ipc/ipc_channel_proxy.cc \
32 ipc/ipc_channel_reader.cc \
33 ipc/ipc_forwarding_message_filter.cc \
34 ipc/ipc_logging.cc \
35 ipc/ipc_messag
[all...]
H A Dipc.target.linux-mips64.mk26 ipc/file_descriptor_set_posix.cc \
27 ipc/ipc_channel.cc \
28 ipc/ipc_channel_factory.cc \
29 ipc/ipc_channel_common.cc \
30 ipc/ipc_channel_posix.cc \
31 ipc/ipc_channel_proxy.cc \
32 ipc/ipc_channel_reader.cc \
33 ipc/ipc_forwarding_message_filter.cc \
34 ipc/ipc_logging.cc \
35 ipc/ipc_messag
[all...]
H A Dipc.target.linux-x86.mk26 ipc/file_descriptor_set_posix.cc \
27 ipc/ipc_channel.cc \
28 ipc/ipc_channel_factory.cc \
29 ipc/ipc_channel_common.cc \
30 ipc/ipc_channel_posix.cc \
31 ipc/ipc_channel_proxy.cc \
32 ipc/ipc_channel_reader.cc \
33 ipc/ipc_forwarding_message_filter.cc \
34 ipc/ipc_logging.cc \
35 ipc/ipc_messag
[all...]

Completed in 3957 milliseconds

12345678