OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:recursive_
(Results
1 - 7
of
7
) sorted by null
/external/libchrome/sandbox/linux/syscall_broker/
broker_file_permission.cc
56
if ((
recursive_
&& strncmp(requested_filename, path, strlen(path)) == 0)) {
118
if (!
recursive_
)
194
if (!
recursive_
)
217
recursive_
(recursive),
235
if (
recursive_
) {
broker_file_permission.h
108
bool
recursive_
; // Allow everything under this path. |path| must be a dir.
member in class:sandbox::syscall_broker::BrokerFilePermission
/external/libchrome/base/files/
file_enumerator_posix.cc
47
recursive_
(recursive),
60
recursive_
(recursive),
104
if (
recursive_
&& S_ISDIR(i->stat_.st_mode))
file_enumerator.h
149
bool
recursive_
;
member in class:base::FileEnumerator
file_path_watcher_linux.cc
184
bool
recursive_
;
member in class:base::__anon15702::FilePathWatcherImpl
346
:
recursive_
(false) {
459
recursive_
= recursive;
502
if (
recursive_
)
544
if (!
recursive_
)
580
DCHECK(
recursive_
);
619
DCHECK(
recursive_
);
633
if (!
recursive_
)
/art/runtime/base/
mutex.cc
316
: BaseMutex(name, level),
recursive_
(recursive), recursion_count_(0) {
361
if (kDebugLocking && !
recursive_
) {
364
if (!
recursive_
|| !IsExclusiveHeld(self)) {
396
CHECK(recursion_count_ == 1 ||
recursive_
) << "Unexpected recursion count on mutex: "
404
if (kDebugLocking && !
recursive_
) {
407
if (!
recursive_
|| !IsExclusiveHeld(self)) {
436
CHECK(recursion_count_ == 1 ||
recursive_
) << "Unexpected recursion count on mutex: "
459
if (!
recursive_
|| recursion_count_ == 0) {
461
CHECK(recursion_count_ == 0 ||
recursive_
) << "Unexpected recursion count on mutex: "
503
os << (
recursive_
? "recursive " : "non-recursive "
[
all
...]
mutex.h
281
const bool
recursive_
; // Can the lock be recursively held?
member in class:art::Mutex
Completed in 174 milliseconds