Home
last modified time | relevance | path

Searched refs:BrokerProcess (Results 1 – 3 of 3) sorted by relevance

/external/libchrome/sandbox/linux/syscall_broker/
Dbroker_process_unittest.cc41 static void CloseChannel(BrokerProcess* broker) { broker->CloseChannel(); } in CloseChannel()
44 static int GetIPCDescriptor(const BrokerProcess* broker) { in GetIPCDescriptor()
57 TEST(BrokerProcess, CreateAndDestroy) { in TEST() argument
61 std::unique_ptr<BrokerProcess> open_broker( in TEST()
62 new BrokerProcess(EPERM, permissions)); in TEST()
71 TEST(BrokerProcess, TestOpenAccessNull) { in TEST() argument
73 BrokerProcess open_broker(EPERM, empty); in TEST()
99 BrokerProcess open_broker(denied_errno, permissions, fast_check_in_client); in TestOpenFilePerms()
219 TEST(BrokerProcess, OpenFilePermsWithClientCheck) { in TEST() argument
225 TEST(BrokerProcess, OpenOpenFilePermsNoClientCheck) { in TEST() argument
[all …]
Dbroker_process.cc33 BrokerProcess::BrokerProcess( in BrokerProcess() function in sandbox::syscall_broker::BrokerProcess
45 BrokerProcess::~BrokerProcess() { in ~BrokerProcess()
60 bool BrokerProcess::Init( in Init()
104 void BrokerProcess::CloseChannel() { in CloseChannel()
108 int BrokerProcess::Access(const char* pathname, int mode) const { in Access()
113 int BrokerProcess::Open(const char* pathname, int flags) const { in Open()
Dbroker_process.h36 class SANDBOX_EXPORT BrokerProcess {
47 BrokerProcess(
53 ~BrokerProcess();
87 DISALLOW_COPY_AND_ASSIGN(BrokerProcess);