Home | History | Annotate | Download | only in memory

Lines Matching refs:process

15 #include "base/process/process_handle.h"
59 // If true, the file can be shared read-only to a process.
87 // shared memory file that was created by a remote process and not shared
88 // to the current process.
91 ProcessHandle process);
107 // Returns the maximum number of handles that can be open at once per process.
220 // Shares the shared memory to another process. Attempts to create a
221 // platform-specific new_handle which can be used in a remote process to read
223 // handle for use in the remote process.
230 bool ShareReadOnlyToProcess(ProcessHandle process,
232 return ShareToProcessCommon(process, new_handle, false, SHARE_READONLY);
236 // bool ok = ShareReadOnlyToProcess(process, new_handle);
241 bool GiveReadOnlyToProcess(ProcessHandle process,
243 return ShareToProcessCommon(process, new_handle, true, SHARE_READONLY);
246 // Shares the shared memory to another process. Attempts
248 // used in a remote process to access the shared memory
250 // the handle for use in the remote process.
252 bool ShareToProcess(ProcessHandle process,
254 return ShareToProcessCommon(process, new_handle, false, SHARE_CURRENT_MODE);
258 // bool ok = ShareToProcess(process, new_handle);
263 bool GiveToProcess(ProcessHandle process,
265 return ShareToProcessCommon(process, new_handle, true, SHARE_CURRENT_MODE);
279 bool ShareToProcessCommon(ProcessHandle process,