/external/libchrome/base/ |
native_library_posix.cc | 5 #include "base/native_library.h" 9 #include "base/files/file_path.h" 10 #include "base/logging.h" 11 #include "base/strings/utf_string_conversions.h" 12 #include "base/threading/thread_restrictions.h" 14 namespace base { namespace 24 base::ThreadRestrictions::AssertIOAllowed(); 57 } // namespace base
|
pending_task.h | 10 #include "base/base_export.h" 11 #include "base/callback.h" 12 #include "base/location.h" 13 #include "base/time/time.h" 14 #include "base/tracking_info.h" 16 namespace base { namespace 56 typedef std::priority_queue<base::PendingTask> DelayedTaskQueue; 58 } // namespace base
|
run_loop.cc | 5 #include "base/run_loop.h" 7 #include "base/bind.h" 8 #include "base/tracked_objects.h" 12 #include "base/message_loop/message_pump_dispatcher.h" 15 namespace base { namespace 75 base::Closure RunLoop::QuitClosure() { 76 return base::Bind(&RunLoop::Quit, weak_factory_.GetWeakPtr()); 107 } // namespace base
|
sys_info_internal.h | 8 #include "base/macros.h" 10 namespace base { namespace 32 } // namespace base
|
thread_task_runner_handle.cc | 5 #include "base/thread_task_runner_handle.h" 7 #include "base/lazy_instance.h" 8 #include "base/single_thread_task_runner.h" 9 #include "base/threading/thread_local.h" 11 namespace base { namespace 15 base::LazyInstance<base::ThreadLocalPointer<ThreadTaskRunnerHandle> >::Leaky 46 } // namespace base
|
/external/libchrome/base/power_monitor/ |
power_monitor_source.h | 8 #include "base/base_export.h" 9 #include "base/macros.h" 10 #include "base/memory/ref_counted.h" 11 #include "base/observer_list_threadsafe.h" 12 #include "base/synchronization/lock.h" 14 namespace base { namespace 63 } // namespace base
|
power_observer.h | 8 #include "base/base_export.h" 9 #include "base/compiler_specific.h" 11 namespace base { namespace 29 } // namespace base
|
/external/libchrome/base/process/ |
port_provider_mac.h | 10 #include "base/base_export.h" 11 #include "base/macros.h" 12 #include "base/observer_list.h" 13 #include "base/process/process_handle.h" 14 #include "base/synchronization/lock.h" 16 namespace base { namespace 18 // Abstract base class that provides a mapping from ProcessHandle (pid_t) to the 53 base::Lock lock_; 54 base::ObserverList<Observer> observer_list_; 59 } // namespace base [all...] |
process_info.h | 8 #include "base/base_export.h" 11 namespace base { namespace 41 } // namespace base
|
/external/libchrome/base/strings/ |
nullable_string16.h | 10 #include "base/base_export.h" 11 #include "base/strings/string16.h" 13 namespace base { namespace 44 } // namespace base
|
string_split.h | 12 #include "base/base_export.h" 13 #include "base/strings/string16.h" 14 #include "base/strings/string_piece.h" 16 namespace base { namespace 44 // std::vector<std::string> tokens = base::SplitString( 45 // input, ",;", base::KEEP_WHITESPACE, base::SPLIT_WANT_ALL); 65 // base::SplitStringPiece(input, base::kWhitespaceASCII, 66 // base::KEEP_WHITESPACE [all...] |
utf_string_conversion_utils.cc | 5 #include "base/strings/utf_string_conversion_utils.h" 7 #include "base/third_party/icu/icu_utf.h" 9 namespace base { namespace 148 } // namespace base
|
/external/libchrome/base/synchronization/ |
lock_impl_posix.cc | 5 #include "base/synchronization/lock_impl.h" 10 #include "base/logging.h" 12 namespace base { namespace 55 } // namespace base
|
/external/libchrome/base/test/ |
multiprocess_test.cc | 5 #include "base/test/multiprocess_test.h" 7 #include "base/base_switches.h" 8 #include "base/command_line.h" 9 #include "base/files/file_path.h" 10 #include "base/files/file_util.h" 13 namespace base { namespace 62 } // namespace base
|
multiprocess_test_android.cc | 5 #include "base/test/multiprocess_test.h" 9 #include "base/base_switches.h" 10 #include "base/command_line.h" 11 #include "base/containers/hash_tables.h" 12 #include "base/logging.h" 13 #include "base/posix/global_descriptors.h" 16 namespace base { namespace 42 base::hash_set<int> fds_to_keep_open; 49 int base = GlobalDescriptors::kBaseDescriptor; local 50 for (int fd = base; fd < sysconf(_SC_OPEN_MAX); ++fd) [all...] |
sequenced_worker_pool_owner.cc | 5 #include "base/test/sequenced_worker_pool_owner.h" 7 #include "base/location.h" 8 #include "base/message_loop/message_loop.h" 9 #include "base/single_thread_task_runner.h" 11 namespace base { namespace 60 } // namespace base
|
sequenced_worker_pool_owner.h | 13 #include "base/callback.h" 14 #include "base/compiler_specific.h" 15 #include "base/macros.h" 16 #include "base/memory/ref_counted.h" 17 #include "base/run_loop.h" 18 #include "base/synchronization/lock.h" 19 #include "base/threading/sequenced_worker_pool.h" 21 namespace base { namespace 57 base::RunLoop exit_loop_; 69 } // namespace base [all...] |
test_io_thread.cc | 5 #include "base/test/test_io_thread.h" 7 #include "base/bind.h" 8 #include "base/callback.h" 9 #include "base/synchronization/waitable_event.h" 13 void PostTaskAndWaitHelper(base::WaitableEvent* event, 14 const base::Closure& task) { 21 namespace base { namespace 43 base::Thread::Options(base::MessageLoop::TYPE_IO, 0))); 53 const base::Closure& task) [all...] |
test_io_thread.h | 8 #include "base/callback_forward.h" 9 #include "base/compiler_specific.h" 10 #include "base/macros.h" 11 #include "base/memory/ref_counted.h" 12 #include "base/task_runner.h" 13 #include "base/threading/thread.h" 14 #include "base/time/time.h" 16 namespace base { namespace 36 const base::Closure& task); 40 const base::Closure& task) [all...] |
/external/libchrome/base/threading/ |
non_thread_safe.h | 9 // non dll-interface class 'Bar' used as base for dll-interface class 'Foo'. 12 #include "base/compiler_specific.h" 21 #include "base/threading/non_thread_safe_impl.h" 23 namespace base { namespace 48 // class MyClass : public base::NonThreadSafe { 56 // Note that base::ThreadChecker offers identical functionality to 58 // to have a base::ThreadChecker as a member, rather than inherit from 60 // the documentation for base::ThreadChecker. 69 } // namespace base
|
thread_collision_warner.cc | 5 #include "base/threading/thread_collision_warner.h" 7 #include "base/logging.h" 8 #include "base/threading/platform_thread.h" 10 namespace base { namespace 64 } // namespace base
|
/external/libchrome/base/trace_event/ |
heap_profiler_allocation_context.cc | 5 #include "base/trace_event/heap_profiler_allocation_context.h" 9 #include "base/hash.h" 10 #include "base/macros.h" 12 namespace base { namespace 41 } // namespace base 44 using base::trace_event::AllocationContext; 45 using base::trace_event::Backtrace; 48 return base::Hash(
|
heap_profiler_allocation_context.h | 11 #include "base/base_export.h" 12 #include "base/containers/hash_tables.h" 14 namespace base { namespace 81 } // namespace base 86 struct BASE_EXPORT hash<base::trace_event::Backtrace> { 87 size_t operator()(const base::trace_event::Backtrace& backtrace) const; 91 struct BASE_EXPORT hash<base::trace_event::AllocationContext> { 92 size_t operator()(const base::trace_event::AllocationContext& context) const;
|
memory_allocator_dump_guid.h | 12 #include "base/base_export.h" 14 namespace base { namespace 49 } // namespace base
|
memory_dump_session_state.h | 8 #include "base/base_export.h" 9 #include "base/memory/ref_counted.h" 10 #include "base/trace_event/heap_profiler_stack_frame_deduplicator.h" 11 #include "base/trace_event/heap_profiler_type_name_deduplicator.h" 13 namespace base { namespace 51 } // namespace base
|