/external/libchrome/base/trace_event/ |
process_memory_totals.cc | 5 #include "base/trace_event/process_memory_totals.h" 7 #include "base/format_macros.h" 8 #include "base/strings/stringprintf.h" 9 #include "base/trace_event/trace_event_argument.h" 11 namespace base { namespace 47 } // namespace base
|
/external/libchrome/sandbox/linux/services/ |
scoped_process_unittest.cc | 14 #include "base/bind.h" 15 #include "base/bind_helpers.h" 16 #include "base/callback.h" 17 #include "base/files/file_util.h" 18 #include "base/files/scoped_file.h" 19 #include "base/logging.h" 20 #include "base/posix/eintr_wrapper.h" 21 #include "base/threading/platform_thread.h" 22 #include "base/time/time.h" 41 ScopedProcess process(base::Bind(&ExitWithCode, kCustomExitCode)) [all...] |
/external/libmojo/base/android/ |
base_jni_onload.h | 11 #include "base/base_export.h" 12 #include "base/callback.h" 14 namespace base { namespace 19 typedef base::Callback<bool(JNIEnv*)> RegisterCallback; 26 typedef base::Callback<bool(void)> InitCallback; 30 } // namespace base
|
/external/libmojo/base/android/jni_generator/ |
jni_generator_helper.h | 11 #include "base/android/jni_android.h" 12 #include "base/android/scoped_java_ref.h" 13 #include "base/logging.h" 32 base::android::CheckException(env); 37 using base::android::ScopedJavaLocalRef; 38 using base::android::JavaParamRef;
|
/external/libmojo/mojo/common/ |
common_custom_types_struct_traits.h | 17 struct StructTraits<common::mojom::String16, base::string16> { 18 static std::vector<uint16_t> data(const base::string16& str) { 19 const uint16_t* base = str.data(); local 20 return std::vector<uint16_t>(base, base + str.size()); 22 static bool Read(common::mojom::String16DataView data, base::string16* output);
|
common_type_converters_unittest.cc | 9 #include "base/strings/utf_string_conversions.h" 19 const base::StringPiece& str) { 28 void ExpectEqualsString16(const base::string16& expected, 29 const base::string16& actual) { 33 void ExpectEqualsMojoString(const base::string16& expected, 35 EXPECT_EQ(expected, str.To<base::string16>()); 43 base::StringPiece string_piece(kText); 47 ExpectEqualsStringPiece(kText, mojo_string.To<base::StringPiece>()); 51 ExpectEqualsStringPiece(kText, mojo_string.To<base::StringPiece>()); 54 base::StringPiece empty_string_piece = String().To<base::StringPiece>() [all...] |
/external/libmojo/mojo/edk/system/ports/ |
port.h | 13 #include "base/macros.h" 14 #include "base/memory/ref_counted.h" 15 #include "base/synchronization/lock.h" 23 class Port : public base::RefCountedThreadSafe<Port> { 33 base::Lock lock; 49 friend class base::RefCountedThreadSafe<Port>;
|
/external/pdfium/core/fxcrt/ |
fx_safe_types.h | 12 #include "third_party/base/numerics/safe_math.h" 14 typedef pdfium::base::CheckedNumeric<uint32_t> FX_SAFE_UINT32; 15 typedef pdfium::base::CheckedNumeric<int32_t> FX_SAFE_INT32; 16 typedef pdfium::base::CheckedNumeric<size_t> FX_SAFE_SIZE_T; 17 typedef pdfium::base::CheckedNumeric<FX_FILESIZE> FX_SAFE_FILESIZE; 18 typedef pdfium::base::CheckedNumeric<FX_STRSIZE> FX_SAFE_STRSIZE;
|
/external/webrtc/webrtc/p2p/base/ |
p2ptransport.cc | 11 #include "webrtc/p2p/base/p2ptransport.h" 15 #include "webrtc/base/base64.h" 16 #include "webrtc/base/common.h" 17 #include "webrtc/base/stringencode.h" 18 #include "webrtc/base/stringutils.h" 19 #include "webrtc/p2p/base/p2ptransportchannel.h"
|
/hardware/broadcom/libbt/ |
gen-buildcfg.sh | 16 BASE=`basename $2` 17 BASE=`echo ${BASE} | tr "[:lower:]" "[:upper:]"` 18 BASE=`echo ${BASE} | sed -e "s/\\./_/"` 19 PROTECT="_${BASE}"
|
/hardware/qcom/bt/libbt-vendor/ |
gen-buildcfg.sh | 16 BASE=`basename $2` 17 BASE=`echo ${BASE} | tr "[:lower:]" "[:upper:]"` 18 BASE=`echo ${BASE} | sed -e "s/\\./_/"` 19 PROTECT="_${BASE}"
|
/system/tpm/tpm_manager/client/ |
tpm_nvram_binder_proxy.cc | 19 #include <base/bind.h> 20 #include <base/callback.h> 21 #include <base/logging.h> 64 auto method = base::Bind(&ITpmNvram::DefineSpace, base::Unretained(binder_)); 65 auto get_error = base::Bind(&CreateErrorResponse<DefineSpaceReply>); 73 auto method = base::Bind(&ITpmNvram::DestroySpace, base::Unretained(binder_)); 74 auto get_error = base::Bind(&CreateErrorResponse<DestroySpaceReply>); 82 auto method = base::Bind(&ITpmNvram::WriteSpace, base::Unretained(binder_)) [all...] |
/external/libmojo/ipc/ |
ipc_message_utils.cc | 10 #include "base/files/file_path.h" 11 #include "base/json/json_writer.h" 12 #include "base/strings/nullable_string16.h" 13 #include "base/strings/string_number_conversions.h" 14 #include "base/strings/utf_string_conversions.h" 15 #include "base/time/time.h" 16 #include "base/values.h" 28 #include "base/memory/shared_memory_handle.h" 60 base::StringPrintf("[%02X]", static_cast<unsigned char>(data[i]))); 63 out->append(base::StringPrintf [all...] |
/external/libchrome/components/timers/ |
alarm_timer_chromeos.cc | 11 #include "base/bind.h" 12 #include "base/bind_helpers.h" 13 #include "base/files/file_util.h" 14 #include "base/lazy_instance.h" 15 #include "base/logging.h" 16 #include "base/macros.h" 17 #include "base/message_loop/message_loop.h" 18 #include "base/pending_task.h" 19 #include "base/threading/thread.h" 20 #include "base/threading/thread_task_runner_handle.h [all...] |
/external/mesa3d/src/gbm/backends/dri/ |
gbm_dri.c | 71 struct gbm_dri_device *dri = gbm_dri_device(surf->base.gbm); 84 struct gbm_dri_device *dri = gbm_dri_device(surf->base.gbm); 97 struct gbm_dri_device *dri = gbm_dri_device(surf->base.gbm); 194 "%.*s/tls/%s_dri.so", len, p, dri->base.driver_name); 199 "%.*s/%s_dri.so", len, p, dri->base.driver_name); 235 dri->base.driver_name = dri_fd_get_driver_name(dri->base.base.fd); 236 if (dri->base.driver_name == NULL) 241 fprintf(stderr, "failed to load driver: %s\n", dri->base.driver_name) [all...] |
/external/curl/tests/unit/ |
unit1303.c | 43 /* BASE is just a define to make us fool around with decently large number so 45 #define BASE 1000000 79 {BASE + 4, 0, 10000, 8000, FALSE, 6000, "6 seconds should be left"}, 80 {BASE + 4, 990000, 10000, 8000, FALSE, 5010, "5010 ms should be left"}, 81 {BASE + 10, 0, 10000, 8000, FALSE, -1, "timeout is -1, expired"}, 82 {BASE + 12, 0, 10000, 8000, FALSE, -2000, "-2000, overdue 2 seconds"}, 85 {BASE + 4, 0, 10000, 8000, TRUE, 4000, "4 seconds should be left"}, 86 {BASE + 4, 990000, 10000, 8000, TRUE, 3010, "3010 ms should be left"}, 87 {BASE + 8, 0, 10000, 8000, TRUE, -1, "timeout is -1, expired"}, 88 {BASE + 10, 0, 10000, 8000, TRUE, -2000, "-2000, overdue 2 seconds"} [all...] |
/external/mesa3d/src/gallium/state_trackers/egl/wayland/ |
native_shm.c | 48 struct wayland_display base; member in struct:wayland_shm_display 66 if (shmdpy->base.configs) 67 FREE(shmdpy->base.configs); 68 if (shmdpy->base.own_dpy) 69 wl_display_disconnect(shmdpy->base.dpy); 82 struct pipe_screen *screen = shmdpy->base.base.screen; 124 shmdpy->base.formats |= HAS_ARGB8888; 127 shmdpy->base.formats |= HAS_XRGB8888; 158 shmdpy->base.queue = wl_display_create_queue(shmdpy->base.dpy) [all...] |
/external/clang/test/Parser/ |
cxx0x-override-control-keywords.cpp | 4 struct Base { 8 struct S : Base { 13 struct T : Base {
|
/external/guava/guava-gwt/test/com/google/common/base/ |
Utf8Test_gwt.java | 16 package com.google.common.base; 19 return "com.google.common.base.testModule"; 22 com.google.common.base.Utf8Test testCase = new com.google.common.base.Utf8Test(); 27 com.google.common.base.Utf8Test testCase = new com.google.common.base.Utf8Test(); 32 com.google.common.base.Utf8Test testCase = new com.google.common.base.Utf8Test(); 37 com.google.common.base.Utf8Test testCase = new com.google.common.base.Utf8Test() [all...] |
/external/libbrillo/brillo/ |
osrelease_reader.cc | 7 #include <base/files/file_enumerator.h> 8 #include <base/files/file_util.h> 9 #include <base/logging.h> 15 Load(base::FilePath("/")); 24 void OsReleaseReader::LoadTestingOnly(const base::FilePath& root_dir) { 28 void OsReleaseReader::Load(const base::FilePath& root_dir) { 29 base::FilePath osrelease = root_dir.Append("etc").Append("os-release"); 36 base::FilePath osreleased = root_dir.Append("etc").Append("os-release.d"); 37 base::FileEnumerator enumerator( 38 osreleased, false, base::FileEnumerator::FILES) [all...] |
/external/libchrome/base/debug/ |
alias.cc | 5 #include "base/debug/alias.h" 8 namespace base { namespace 22 } // namespace base
|
/external/libchrome/base/ |
hash.cc | 5 #include "base/hash.h" 9 namespace base { namespace 16 } // namespace base
|
scoped_clear_errno_unittest.cc | 7 #include "base/scoped_clear_errno.h" 10 namespace base { namespace 30 } // namespace base
|
sys_info_internal.h | 8 #include "base/macros.h" 10 namespace base { namespace 32 } // namespace base
|
/external/libchrome/base/message_loop/ |
message_pump.cc | 5 #include "base/message_loop/message_pump.h" 7 namespace base { namespace 25 } // namespace base
|