Searched defs:recursive (Results 1 - 25 of 104) sorted by relevance

12345

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstacktrace_libunwind-inl.h55 // recursive request, we'd end up with infinite recursion or deadlock.
58 static __thread int recursive; variable
85 if (recursive) {
88 ++recursive;
126 --recursive;
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dstacktrace_libunwind-inl.h55 // recursive request, we'd end up with infinite recursion or deadlock.
58 static __thread int recursive; variable
85 if (recursive) {
88 ++recursive;
126 --recursive;
/external/llvm/lib/Support/
H A DMutex.cpp26 MutexImpl::MutexImpl( bool recursive) { } argument
44 MutexImpl::MutexImpl( bool recursive)
56 // Initialize the mutex as a recursive mutex, if requested, or normal
58 int kind = ( recursive ? PTHREAD_MUTEX_RECURSIVE : PTHREAD_MUTEX_NORMAL );
/external/qemu/distrib/sdl-1.2.15/src/thread/dc/
H A DSDL_sysmutex.c32 int recursive; member in struct:SDL_mutex
46 mutex->recursive = 0;
77 ++mutex->recursive;
85 mutex->recursive = 0;
109 if ( mutex->recursive ) {
110 --mutex->recursive;
/external/qemu/distrib/sdl-1.2.15/src/thread/generic/
H A DSDL_sysmutex.c31 int recursive; member in struct:SDL_mutex
46 mutex->recursive = 0;
84 ++mutex->recursive;
92 mutex->recursive = 0;
116 if ( mutex->recursive ) {
117 --mutex->recursive;
/external/chromium_org/base/files/
H A Dfile_path_watcher.cc50 bool recursive,
53 return impl_->Watch(path, recursive, callback);
49 Watch(const FilePath& path, bool recursive, const Callback& callback) argument
H A Dfile_enumerator_win.cc44 bool recursive,
46 : recursive_(recursive),
50 // INCLUDE_DOT_DOT must not be specified if recursive.
51 DCHECK(!(recursive && (INCLUDE_DOT_DOT & file_type_)));
57 bool recursive,
60 : recursive_(recursive),
65 // INCLUDE_DOT_DOT must not be specified if recursive.
66 DCHECK(!(recursive && (INCLUDE_DOT_DOT & file_type_)));
146 // If |cur_file| is a directory, and we are doing recursive searching,
43 FileEnumerator(const FilePath& root_path, bool recursive, int file_type) argument
56 FileEnumerator(const FilePath& root_path, bool recursive, int file_type, const FilePath::StringType& pattern) argument
H A Dfile_util_proxy.cc50 File::Error DeleteAdapter(const FilePath& file_path, bool recursive) { argument
54 if (!base::DeleteFile(file_path, recursive)) {
55 if (!recursive && !base::IsDirectoryEmpty(file_path)) {
82 bool recursive,
86 Bind(&DeleteAdapter, file_path, recursive),
80 DeleteFile(TaskRunner* task_runner, const FilePath& file_path, bool recursive, const StatusCallback& callback) argument
H A Dfile_enumerator_posix.cc41 bool recursive,
45 recursive_(recursive),
47 // INCLUDE_DOT_DOT must not be specified if recursive.
48 DCHECK(!(recursive && (INCLUDE_DOT_DOT & file_type_)));
53 bool recursive,
58 recursive_(recursive),
61 // INCLUDE_DOT_DOT must not be specified if recursive.
62 DCHECK(!(recursive && (INCLUDE_DOT_DOT & file_type_)));
40 FileEnumerator(const FilePath& root_path, bool recursive, int file_type) argument
52 FileEnumerator(const FilePath& root_path, bool recursive, int file_type, const FilePath::StringType& pattern) argument
H A Dfile_path_watcher_win.cc31 bool recursive,
46 // Setup a watch handle for directory |dir|. Set |recursive| to true to watch
51 bool recursive,
90 bool recursive,
97 recursive_watch_ = recursive;
162 // Only the mtime of |target_| is tracked but in a recursive watch,
207 bool recursive,
211 recursive,
89 Watch(const FilePath& path, bool recursive, const FilePathWatcher::Callback& callback) argument
206 SetupWatchHandle(const FilePath& dir, bool recursive, HANDLE* handle) argument
/external/clang/test/Analysis/inlining/
H A Dtest-always-inline-size-option.c29 // Make sure we terminate a recursive path.
30 int recursive() { function
31 return recursive();
34 return recursive();
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DContainerBox.java53 * @param recursive step down the tree
56 <T extends Box> List<T> getBoxes(Class<T> clazz, boolean recursive); argument
/external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
H A DSDL_sysmutex.c36 int recursive; member in struct:SDL_mutex
93 ++mutex->recursive;
101 mutex->recursive = 0;
129 if ( mutex->recursive ) {
130 --mutex->recursive;
/external/qemu/distrib/sdl-1.2.15/src/thread/riscos/
H A DSDL_sysmutex.c37 int recursive; member in struct:SDL_mutex
92 ++mutex->recursive;
100 mutex->recursive = 0;
128 if ( mutex->recursive ) {
129 --mutex->recursive;
/external/chromium_org/chrome/browser/chromeos/file_system_provider/operations/
H A Dcreate_directory.cc20 bool recursive,
24 recursive_(recursive),
41 options.recursive = recursive_;
16 CreateDirectory( extensions::EventRouter* event_router, const ProvidedFileSystemInfo& file_system_info, const base::FilePath& directory_path, bool recursive, const storage::AsyncFileUtil::StatusCallback& callback) argument
H A Ddelete_entry.cc19 bool recursive,
23 recursive_(recursive),
40 options.recursive = recursive_;
16 DeleteEntry(extensions::EventRouter* event_router, const ProvidedFileSystemInfo& file_system_info, const base::FilePath& entry_path, bool recursive, const storage::AsyncFileUtil::StatusCallback& callback) argument
/external/chromium_org/chrome/browser/extensions/api/file_system/
H A Dentry_watcher_service.h52 bool recursive,
83 bool recursive);
88 bool recursive; member in struct:extensions::EntryWatcherService::EntryWatcher
103 bool recursive,
H A Dentry_watcher_service_unittest.cc88 const bool recursive = false; local
90 kExtensionId, testing_url_, recursive, base::Bind(&LogStatus, &log));
114 const bool recursive = false; local
116 kExtensionId, testing_url_, recursive, base::Bind(&LogStatus, &log));
151 const bool recursive = false; local
153 kExtensionId, testing_url_, recursive, base::Bind(&LogStatus, &log));
169 kExtensionId, testing_url_, recursive, base::Bind(&LogStatus, &log));
189 const bool recursive = true; local
191 kExtensionId, testing_url_, recursive, base::Bind(&LogStatus, &log));
210 const bool recursive local
[all...]
/external/llvm/include/llvm/Support/
H A DMutex.h32 /// Initializes the lock but doesn't acquire it. if \p recursive is set
33 /// to false, the lock will not be recursive which makes it cheaper but
37 explicit MutexImpl(bool recursive = true);
91 bool recursive; member in class:llvm::sys::SmartMutex
94 MutexImpl(rec), acquired(0), recursive(rec) { }
103 assert((recursive || acquired == 0) && "Lock already acquired!!");
116 assert(((recursive && acquired) || (acquired == 1)) &&
/external/chromium_org/chrome/browser/extensions/api/bookmarks/
H A Dbookmark_api_helpers.cc112 bool recursive,
127 if (node->is_folder() && !node->empty() && !recursive) {
109 RemoveNode(BookmarkModel* model, ChromeBookmarkClient* client, int64 id, bool recursive, std::string* error) argument
/external/chromium_org/ppapi/cpp/private/
H A Dflash_file.cc65 bool recursive) {
70 PP_FromBool(recursive));
63 DeleteFileOrDir(const InstanceHandle& instance, const std::string& path, bool recursive) argument
/external/chromium_org/ppapi/thunk/
H A Dppb_flash_file_modulelocal_thunk.cc44 PP_Bool recursive) {
48 return enter.functions()->DeleteFileOrDir(instance, path, recursive);
42 DeleteFileOrDir(PP_Instance instance, const char* path, PP_Bool recursive) argument
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DThreadingPthreads.cpp113 MutexBase::MutexBase(bool recursive) argument
117 pthread_mutexattr_settype(&attr, recursive ? PTHREAD_MUTEX_RECURSIVE : PTHREAD_MUTEX_NORMAL);
155 // succeed or not for the non-recursive mutex. On Linux the two implementations
157 // non-recursive mutex.
163 // The Mutex class is not recursive, so the recursionCount should be
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
H A DAbstractAppleMetaDataBox.java41 public <T extends Box> List<T> getBoxes(Class<T> clazz, boolean recursive) { argument
42 //todo recursive?
/external/proguard/src/proguard/optimize/
H A DTailRecursionSimplifier.java154 // Is it a recursive call?
175 // Isn't the recursive call inside a try/catch block?
236 * invocation can be treated as tail-recursive.
243 private boolean recursive; field in class:TailRecursionSimplifier.MyRecursionChecker
248 * tail-recursive.
252 return recursive;
259 recursive = targetMethod.equals(methodrefConstant.referencedMember);
267 recursive = false;

Completed in 620 milliseconds

12345