Searched defs:recursive (Results 1 - 25 of 101) 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/net/base/
H A Ddirectory_lister_unittest.cc19 explicit ListerDelegate(bool recursive) : error_(-1), recursive_(recursive) { argument
H A Ddirectory_lister.cc54 bool recursive,
58 recursive_(recursive),
53 DirectoryLister(const FilePath& dir, bool recursive, SORT_TYPE sort, DirectoryListerDelegate* delegate) argument
/external/chromium_org/base/files/
H A Dfile_path_watcher.cc33 bool recursive,
36 return impl_->Watch(path, recursive, callback);
32 Watch(const FilePath& path, bool recursive, const Callback& callback) argument
H A Dfile_enumerator_win.cc43 bool recursive,
45 : recursive_(recursive),
49 // INCLUDE_DOT_DOT must not be specified if recursive.
50 DCHECK(!(recursive && (INCLUDE_DOT_DOT & file_type_)));
56 bool recursive,
59 : recursive_(recursive),
64 // INCLUDE_DOT_DOT must not be specified if recursive.
65 DCHECK(!(recursive && (INCLUDE_DOT_DOT & file_type_)));
134 // If |cur_file| is a directory, and we are doing recursive searching,
42 FileEnumerator(const FilePath& root_path, bool recursive, int file_type) argument
55 FileEnumerator(const FilePath& root_path, bool recursive, int file_type, const FilePath::StringType& pattern) 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.cc30 bool recursive,
45 // Setup a watch handle for directory |dir|. Set |recursive| to true to watch
50 bool recursive,
89 bool recursive,
96 recursive_watch_ = recursive;
191 bool recursive,
195 recursive,
88 Watch(const FilePath& path, bool recursive, const FilePathWatcher::Callback& callback) argument
190 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/chrome/browser/extensions/
H A Dextension_bookmark_helpers.cc86 bool recursive,
99 if (node->is_folder() && node->child_count() > 0 && !recursive) {
84 RemoveNode(BookmarkModel* model, int64 id, bool recursive, std::string* error) argument
/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.cc169 bool recursive,
180 if (node->is_folder() && !node->empty() && !recursive) {
167 RemoveNode(BookmarkModel* model, 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/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.java59 private boolean recursive; field in class:TailRecursionSimplifier
161 // Is it a recursive call?
164 if (recursive)
182 // Isn't the recursive call inside a try/catch block?
185 if (recursive)
234 recursive = targetMethod.equals(methodrefConstant.referencedMember);
242 recursive = false;
/external/chromium_org/net/base/
H A Ddirectory_lister.cc99 bool recursive,
102 : core_(new Core(dir, recursive, sort, this)),
121 bool recursive,
125 recursive_(recursive),
98 DirectoryLister(const base::FilePath& dir, bool recursive, SortType sort, DirectoryListerDelegate* delegate) argument
120 Core(const base::FilePath& dir, bool recursive, SortType sort, DirectoryLister* lister) argument
H A Ddirectory_lister_unittest.cc24 ListerDelegate(bool recursive, argument
27 recursive_(recursive),
/external/chromium_org/ppapi/proxy/
H A Dflash_file_resource.cc75 PP_Bool recursive) {
81 PP_ToBool(recursive)));
73 DeleteFileOrDir(PP_Instance , const char* path, PP_Bool recursive) argument

Completed in 703 milliseconds

12345