Home
last modified time | relevance | path

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

/external/libchrome/sandbox/linux/syscall_broker/
Dbroker_process_unittest.cc387 const char* tempfile_name = tempfile.full_file_name(); in TEST() local
390 permissions.push_back(BrokerFilePermission::ReadWrite(tempfile_name)); in TEST()
396 int can_access = open_broker.Access(tempfile_name, R_OK | W_OK); in TEST()
400 tempfile2 = open_broker.Open(tempfile_name, O_RDWR); in TEST()
621 const char* tempfile_name = temp_str.c_str(); in TEST() local
624 permissions.push_back(BrokerFilePermission::ReadWriteCreate(tempfile_name)); in TEST()
632 fd = open_broker.Open(tempfile_name, O_RDWR | O_CREAT); in TEST()
637 fd = open_broker.Open(tempfile_name, O_RDWR | O_CREAT | O_EXCL); in TEST()
643 int bad_fd = open_broker.Open(tempfile_name, O_RDWR | O_CREAT | O_EXCL); in TEST()
652 int fd_check = open(tempfile_name, O_RDONLY); in TEST()