HomeSort by relevance Sort by last modified time
    Searched refs:BASE_EXPORT (Results 1 - 25 of 197) sorted by null

1 2 3 4 5 6 7 8

  /external/libchrome/base/
base_export.h 12 #define BASE_EXPORT __declspec(dllexport)
14 #define BASE_EXPORT __declspec(dllimport)
19 #define BASE_EXPORT __attribute__((visibility("default")))
21 #define BASE_EXPORT
26 #define BASE_EXPORT
rand_util.h 13 #include "base/base_export.h"
19 BASE_EXPORT uint64_t RandUint64();
22 BASE_EXPORT int RandInt(int min, int max);
29 BASE_EXPORT uint64_t RandGenerator(uint64_t range);
32 BASE_EXPORT double RandDouble();
36 BASE_EXPORT double BitsToOpenEndedUnitInterval(uint64_t bits);
43 BASE_EXPORT void RandBytes(void* output, size_t output_length);
54 BASE_EXPORT std::string RandBytesAsString(size_t length);
57 BASE_EXPORT int GetUrandomFD();
build_time.h 8 #include "base/base_export.h"
24 Time BASE_EXPORT GetBuildTime();
md5.h 11 #include "base/base_export.h"
50 BASE_EXPORT void MD5Init(MD5Context* context);
55 BASE_EXPORT void MD5Update(MD5Context* context, const StringPiece& data);
58 BASE_EXPORT void MD5Final(MD5Digest* digest, MD5Context* context);
63 BASE_EXPORT void MD5IntermediateFinal(MD5Digest* digest,
67 BASE_EXPORT std::string MD5DigestToBase16(const MD5Digest& digest);
71 BASE_EXPORT void MD5Sum(const void* data, size_t length, MD5Digest* digest);
74 BASE_EXPORT std::string MD5String(const StringPiece& str);
base64.h 10 #include "base/base_export.h"
16 BASE_EXPORT void Base64Encode(const StringPiece& input, std::string* output);
21 BASE_EXPORT bool Base64Decode(const StringPiece& input, std::string* output);
  /external/libchrome/base/debug/
debugger.h 12 #include "base/base_export.h"
19 BASE_EXPORT bool WaitForDebugger(int wait_seconds, bool silent);
28 BASE_EXPORT bool BeingDebugged();
31 BASE_EXPORT void BreakDebugger();
38 BASE_EXPORT void SetSuppressDebugUI(bool suppress);
39 BASE_EXPORT bool IsDebugUISuppressed();
alias.h 8 #include "base/base_export.h"
16 void BASE_EXPORT Alias(const void* var);
  /external/libchrome/base/mac/
bundle_locations.h 8 #include "base/base_export.h"
48 BASE_EXPORT NSBundle* MainBundle();
49 BASE_EXPORT FilePath MainBundlePath();
50 BASE_EXPORT NSBundle* OuterBundle();
51 BASE_EXPORT FilePath OuterBundlePath();
52 BASE_EXPORT NSBundle* FrameworkBundle();
53 BASE_EXPORT FilePath FrameworkBundlePath();
57 BASE_EXPORT void SetOverrideOuterBundle(NSBundle* bundle);
58 BASE_EXPORT void SetOverrideFrameworkBundle(NSBundle* bundle);
61 BASE_EXPORT void SetOverrideOuterBundlePath(const FilePath& file_path)
    [all...]
mac_util.h 13 #include "base/base_export.h"
41 BASE_EXPORT std::string PathFromFSRef(const FSRef& ref);
42 BASE_EXPORT bool FSRefFromPath(const std::string& path, FSRef* ref);
46 BASE_EXPORT CGColorSpaceRef GetSRGBColorSpace();
50 BASE_EXPORT CGColorSpaceRef GetGenericRGBColorSpace();
54 BASE_EXPORT CGColorSpaceRef GetSystemColorSpace();
60 BASE_EXPORT void RequestFullScreen(FullScreenMode mode);
68 BASE_EXPORT void ReleaseFullScreen(FullScreenMode mode);
73 BASE_EXPORT void SwitchFullScreenModes(FullScreenMode from_mode,
77 BASE_EXPORT void SetCursorVisibility(bool visible)
    [all...]
  /external/libchrome/base/strings/
string_number_conversions.h 14 #include "base/base_export.h"
34 BASE_EXPORT std::string IntToString(int value);
35 BASE_EXPORT string16 IntToString16(int value);
37 BASE_EXPORT std::string UintToString(unsigned value);
38 BASE_EXPORT string16 UintToString16(unsigned value);
40 BASE_EXPORT std::string Int64ToString(int64_t value);
41 BASE_EXPORT string16 Int64ToString16(int64_t value);
43 BASE_EXPORT std::string Uint64ToString(uint64_t value);
44 BASE_EXPORT string16 Uint64ToString16(uint64_t value);
46 BASE_EXPORT std::string SizeTToString(size_t value)
    [all...]
sys_string_conversions.h 16 #include "base/base_export.h"
34 BASE_EXPORT std::string SysWideToUTF8(const std::wstring& wide);
35 BASE_EXPORT std::wstring SysUTF8ToWide(const StringPiece& utf8);
40 BASE_EXPORT std::string SysWideToNativeMB(const std::wstring& wide);
41 BASE_EXPORT std::wstring SysNativeMBToWide(const StringPiece& native_mb);
50 BASE_EXPORT std::wstring SysMultiByteToWide(const StringPiece& mb,
52 BASE_EXPORT std::string SysWideToMultiByte(const std::wstring& wide,
65 BASE_EXPORT CFStringRef SysUTF8ToCFStringRef(const std::string& utf8);
66 BASE_EXPORT CFStringRef SysUTF16ToCFStringRef(const string16& utf16);
69 BASE_EXPORT NSString* SysUTF8ToNSString(const std::string& utf8)
    [all...]
utf_string_conversions.h 12 #include "base/base_export.h"
24 BASE_EXPORT bool WideToUTF8(const wchar_t* src, size_t src_len,
26 BASE_EXPORT std::string WideToUTF8(const std::wstring& wide);
27 BASE_EXPORT bool UTF8ToWide(const char* src, size_t src_len,
29 BASE_EXPORT std::wstring UTF8ToWide(StringPiece utf8);
31 BASE_EXPORT bool WideToUTF16(const wchar_t* src, size_t src_len,
33 BASE_EXPORT string16 WideToUTF16(const std::wstring& wide);
34 BASE_EXPORT bool UTF16ToWide(const char16* src, size_t src_len,
36 BASE_EXPORT std::wstring UTF16ToWide(const string16& utf16);
38 BASE_EXPORT bool UTF8ToUTF16(const char* src, size_t src_len, string16* output)
    [all...]
pattern.h 8 #include "base/base_export.h"
19 BASE_EXPORT bool MatchPattern(const StringPiece& string,
21 BASE_EXPORT bool MatchPattern(const StringPiece16& string,
  /external/libchrome/base/profiler/
alternate_timer.h 11 #include "base/base_export.h"
26 BASE_EXPORT extern const char kAlternateProfilerTime[];
32 BASE_EXPORT void SetAlternateTimeSource(NowFunction* now_function,
40 BASE_EXPORT TimeSourceType GetTimeSourceType();
  /external/libchrome/base/allocator/
allocator_extension.h 10 #include "base/base_export.h"
21 BASE_EXPORT void ReleaseFreeMemory();
27 BASE_EXPORT bool GetNumericProperty(const char* name, size_t* value);
38 BASE_EXPORT void SetReleaseFreeMemoryFunction(
41 BASE_EXPORT void SetGetNumericPropertyFunction(
  /external/libchrome/base/time/
clock.h 8 #include "base/base_export.h"
28 class BASE_EXPORT Clock {
tick_clock.h 8 #include "base/base_export.h"
27 class BASE_EXPORT TickClock {
  /external/libweave/third_party/chromium/base/
base_export.h 8 #define BASE_EXPORT __attribute__((__visibility__("default")))
  /external/libweave/third_party/chromium/base/time/
clock.h 8 #include "base/base_export.h"
28 class BASE_EXPORT Clock {
  /external/libchrome/base/json/
string_escape.h 12 #include "base/base_export.h"
28 BASE_EXPORT bool EscapeJSONString(const StringPiece& str,
35 BASE_EXPORT bool EscapeJSONString(const StringPiece16& str,
41 BASE_EXPORT std::string GetQuotedJSONString(const StringPiece& str);
42 BASE_EXPORT std::string GetQuotedJSONString(const StringPiece16& str);
55 BASE_EXPORT std::string EscapeBytesAsInvalidJSONString(const StringPiece& str,
  /external/libchrome/base/files/
file_util.h 19 #include "base/base_export.h"
49 BASE_EXPORT FilePath MakeAbsoluteFilePath(const FilePath& input);
56 BASE_EXPORT int64_t ComputeDirectorySize(const FilePath& root_path);
70 BASE_EXPORT bool DeleteFile(const FilePath& path, bool recursive);
78 BASE_EXPORT bool DeleteFileAfterReboot(const FilePath& path);
86 BASE_EXPORT bool Move(const FilePath& from_path, const FilePath& to_path);
94 BASE_EXPORT bool ReplaceFile(const FilePath& from_path,
103 BASE_EXPORT bool CopyFile(const FilePath& from_path, const FilePath& to_path);
115 BASE_EXPORT bool CopyDirectory(const FilePath& from_path,
121 BASE_EXPORT bool PathExists(const FilePath& path)
    [all...]
  /external/libchrome/base/trace_event/
heap_profiler_allocation_context.h 11 #include "base/base_export.h"
40 struct BASE_EXPORT Backtrace {
48 bool BASE_EXPORT operator==(const Backtrace& lhs, const Backtrace& rhs);
54 struct BASE_EXPORT AllocationContext {
77 bool BASE_EXPORT operator==(const AllocationContext& lhs,
86 struct BASE_EXPORT hash<base::trace_event::Backtrace> {
91 struct BASE_EXPORT hash<base::trace_event::AllocationContext> {
  /external/libchrome/base/posix/
safe_strerror.h 12 #include "base/base_export.h"
32 BASE_EXPORT void safe_strerror_r(int err, char *buf, size_t len);
40 BASE_EXPORT std::string safe_strerror(int err);
  /external/libchrome/base/process/
kill.h 50 BASE_EXPORT bool KillProcesses(const FilePath::StringType& executable_name,
57 BASE_EXPORT bool KillProcessGroup(ProcessHandle process_group_id);
68 BASE_EXPORT TerminationStatus GetTerminationStatus(ProcessHandle handle,
87 BASE_EXPORT TerminationStatus GetKnownDeadTerminationStatus(
95 BASE_EXPORT bool WaitForProcessesToExit(
106 BASE_EXPORT bool CleanupProcesses(const FilePath::StringType& executable_name,
125 BASE_EXPORT void EnsureProcessTerminated(Process process);
130 BASE_EXPORT void EnsureProcessGetsReaped(ProcessId pid);
process_info.h 8 #include "base/base_export.h"
16 class BASE_EXPORT CurrentProcessInfo {
35 BASE_EXPORT IntegrityLevel GetCurrentProcessIntegrityLevel();

Completed in 406 milliseconds

1 2 3 4 5 6 7 8