/external/chromium/base/ |
base_api.h | 13 #define BASE_API __attribute__((visibility("default"))) 18 #define BASE_API __declspec(dllexport) 20 #define BASE_API __declspec(dllimport) 23 #define BASE_API
|
rand_util.h | 9 #include "base/base_api.h" 15 BASE_API uint64 RandUint64(); 18 BASE_API int RandInt(int min, int max); 25 BASE_API uint64 RandGenerator(uint64 max); 28 BASE_API double RandDouble();
|
string_number_conversions.h | 11 #include "base/base_api.h" 31 BASE_API std::string IntToString(int value); 32 BASE_API string16 IntToString16(int value); 34 BASE_API std::string UintToString(unsigned value); 35 BASE_API string16 UintToString16(unsigned value); 37 BASE_API std::string Int64ToString(int64 value); 38 BASE_API string16 Int64ToString16(int64 value); 40 BASE_API std::string Uint64ToString(uint64 value); 41 BASE_API string16 Uint64ToString16(uint64 value); 45 BASE_API std::string DoubleToString(double value) [all...] |
file_util_deprecated.h | 17 #include "base/base_api.h" 28 BASE_API FILE* OpenFile(const std::string& filename, const char* mode); 29 BASE_API FILE* OpenFile(const std::wstring& filename, const char* mode); 32 BASE_API void AppendToPath(std::wstring* path, const std::wstring& new_ending); 35 BASE_API FilePath::StringType GetFileExtensionFromPath(const FilePath& path); 36 BASE_API std::wstring GetFileExtensionFromPath(const std::wstring& path); 39 BASE_API bool Delete(const std::wstring& path, bool recursive); 40 BASE_API bool CopyDirectory(const std::wstring& from_path, 43 BASE_API int ReadFile(const std::wstring& filename, char* data, int size); 44 BASE_API int WriteFile(const std::wstring& filename [all...] |
utf_string_conversions.h | 11 #include "base/base_api.h" 21 BASE_API bool WideToUTF8(const wchar_t* src, size_t src_len, 23 BASE_API std::string WideToUTF8(const std::wstring& wide); 24 BASE_API bool UTF8ToWide(const char* src, size_t src_len, std::wstring* output); 25 BASE_API std::wstring UTF8ToWide(const base::StringPiece& utf8); 27 BASE_API bool WideToUTF16(const wchar_t* src, size_t src_len, string16* output); 28 BASE_API string16 WideToUTF16(const std::wstring& wide); 29 BASE_API bool UTF16ToWide(const char16* src, size_t src_len, 31 BASE_API std::wstring UTF16ToWide(const string16& utf16); 33 BASE_API bool UTF8ToUTF16(const char* src, size_t src_len, string16* output) [all...] |
md5.h | 11 #include "base/base_api.h" 47 BASE_API void MD5Sum(const void* data, size_t length, MD5Digest* digest); 51 BASE_API void MD5Init(MD5Context* context); 56 BASE_API void MD5Update(MD5Context* context, const void* buf, size_t len); 59 BASE_API void MD5Final(MD5Digest* digest, MD5Context* pCtx); 62 BASE_API std::string MD5DigestToBase16(const MD5Digest& digest); 65 BASE_API std::string MD5String(const std::string& str);
|
sha1.h | 11 #include "base/base_api.h" 23 BASE_API std::string SHA1HashString(const std::string& str); 27 BASE_API void SHA1HashBytes(const unsigned char* data, size_t len,
|
value_conversions.h | 11 #include "base/base_api.h" 20 BASE_API StringValue* CreateFilePathValue(const FilePath& in_value); 21 BASE_API bool GetValueAsFilePath(const Value& value, FilePath* file_path);
|
file_util.h | 29 #include "base/base_api.h" 52 BASE_API bool EndsWithSeparator(const FilePath& path); 56 BASE_API bool EnsureEndsWithSeparator(FilePath* path); 60 BASE_API bool AbsolutePath(FilePath* path); 64 BASE_API bool ContainsPath(const FilePath& parent, const FilePath& child); 77 BASE_API int CountFilesCreatedAfter(const FilePath& path, 85 BASE_API int64 ComputeDirectorySize(const FilePath& root_path); 93 BASE_API int64 ComputeFilesSize(const FilePath& directory, 104 BASE_API bool Delete(const FilePath& path, bool recursive); 112 BASE_API bool DeleteAfterReboot(const FilePath& path) [all...] |
string_util.h | 16 #include "base/base_api.h" 39 BASE_API int strcasecmp(const char* s1, const char* s2); 44 BASE_API int strncasecmp(const char* s1, const char* s2, size_t count); 47 BASE_API int strncmp16(const char16* s1, const char16* s2, size_t count); 52 BASE_API int vsnprintf(char* buffer, size_t size, const char* format, 60 BASE_API int vswprintf(wchar_t* buffer, size_t size, 96 BASE_API size_t strlcpy(char* dst, const char* src, size_t dst_size); 97 BASE_API size_t wcslcpy(wchar_t* dst, const wchar_t* src, size_t dst_size); 120 BASE_API bool IsWprintfFormatPortable(const wchar_t* format); 171 BASE_API const std::string& EmptyString() [all...] |
string_split.h | 13 #include "base/base_api.h" 26 BASE_API void SplitString(const std::wstring& str, 30 BASE_API void SplitString(const string16& str, 37 BASE_API void SplitString(const std::string& str, 41 BASE_API bool SplitStringIntoKeyValues( 46 BASE_API bool SplitStringIntoKeyValuePairs( 53 BASE_API void SplitStringUsingSubstr(const string16& str, 56 BASE_API void SplitStringUsingSubstr(const std::string& str, 62 BASE_API void SplitStringDontTrim(const string16& str, 69 BASE_API void SplitStringDontTrim(const std::string& str [all...] |
resource_util.h | 14 #include "base/base_api.h" 22 bool BASE_API GetDataResourceFromModule(HMODULE module, int resource_id,
|
stringprintf.h | 12 #include "base/base_api.h" 18 BASE_API std::string StringPrintf(const char* format, ...) PRINTF_FORMAT(1, 2); 19 BASE_API std::wstring StringPrintf(const wchar_t* format, ...) 23 BASE_API std::string StringPrintV(const char* format, va_list ap) 27 BASE_API const std::string& SStringPrintf(std::string* dst, 30 BASE_API const std::wstring& SStringPrintf(std::wstring* dst, 35 BASE_API void StringAppendF(std::string* dst, const char* format, ...) 39 BASE_API void StringAppendF(std::wstring* dst, const wchar_t* format, ...) 44 BASE_API void StringAppendV(std::string* dst, const char* format, va_list ap) 46 BASE_API void StringAppendV(std::wstring* dst [all...] |
base64.h | 11 #include "base/base_api.h" 17 BASE_API bool Base64Encode(const std::string& input, std::string* output); 21 BASE_API bool Base64Decode(const std::string& input, std::string* output);
|
message_pump.h | 9 #include "base/base_api.h" 16 class BASE_API MessagePump : public RefCountedThreadSafe<MessagePump> { 20 class BASE_API Delegate {
|
native_library.h | 12 #include "base/base_api.h" 58 BASE_API NativeLibrary LoadNativeLibrary(const FilePath& library_path, 67 BASE_API NativeLibrary LoadNativeLibraryDynamically( 72 BASE_API void UnloadNativeLibrary(NativeLibrary library); 75 BASE_API void* GetFunctionPointerFromNativeLibrary(NativeLibrary library, 82 BASE_API string16 GetNativeLibraryName(const string16& name);
|
platform_file.h | 16 #include "base/base_api.h" 76 struct BASE_API PlatformFileInfo { 102 BASE_API PlatformFile CreatePlatformFile(const FilePath& name, 108 BASE_API bool ClosePlatformFile(PlatformFile file); 112 BASE_API int ReadPlatformFile(PlatformFile file, int64 offset, 118 BASE_API int WritePlatformFile(PlatformFile file, int64 offset, 124 BASE_API bool TruncatePlatformFile(PlatformFile file, int64 length); 127 BASE_API bool FlushPlatformFile(PlatformFile file); 130 BASE_API bool TouchPlatformFile(PlatformFile file, const Time& last_access_time, 134 BASE_API bool GetPlatformFileInfo(PlatformFile file, PlatformFileInfo* info) [all...] |
process_util.h | 36 #include "base/base_api.h" 135 BASE_API ProcessId GetCurrentProcId(); 138 BASE_API ProcessHandle GetCurrentProcessHandle(); 142 BASE_API bool OpenProcessHandle(ProcessId pid, ProcessHandle* handle); 150 BASE_API bool OpenPrivilegedProcessHandle(ProcessId pid, ProcessHandle* handle); 154 BASE_API bool OpenProcessHandleWithAccess(ProcessId pid, 159 BASE_API void CloseProcessHandle(ProcessHandle process); 164 BASE_API ProcessId GetProcId(ProcessHandle process); 204 BASE_API bool GetProcessIntegrityLevel(ProcessHandle process, 221 BASE_API bool LaunchApp(const std::wstring& cmdline [all...] |
/external/chromium/base/debug/ |
debugger.h | 13 #include "base/base_api.h" 20 BASE_API bool SpawnDebuggerOnProcess(unsigned process_id); 24 BASE_API bool WaitForDebugger(int wait_seconds, bool silent); 33 BASE_API bool BeingDebugged(); 36 BASE_API void BreakDebugger(); 43 BASE_API void SetSuppressDebugUI(bool suppress); 44 BASE_API bool IsDebugUISuppressed();
|
/external/chromium/base/win/ |
win_util.h | 30 #include "base/base_api.h" 40 BASE_API void GetNonClientMetrics(NONCLIENTMETRICS* metrics); 43 BASE_API bool GetUserSidString(std::wstring* user_sid); 46 BASE_API bool IsShiftPressed(); 49 BASE_API bool IsCtrlPressed(); 52 BASE_API bool IsAltPressed(); 60 BASE_API bool UserAccountControlIsEnabled(); 65 BASE_API bool SetAppIdForPropertyStore(IPropertyStore* property_store, 70 BASE_API bool AddCommandToAutoRun(HKEY root_key, const string16& name, 74 BASE_API bool RemoveCommandFromAutoRun(HKEY root_key, const string16& name) [all...] |
i18n.h | 12 #include "base/base_api.h" 22 BASE_API bool GetUserPreferredUILanguageList( 28 BASE_API bool GetThreadPreferredUILanguageList(
|
/external/chromium/base/json/ |
string_escape.h | 13 #include "base/base_api.h" 23 BASE_API void JsonDoubleQuote(const std::string& str, 28 BASE_API std::string GetDoubleQuotedJson(const std::string& str); 30 BASE_API void JsonDoubleQuote(const string16& str, 35 BASE_API std::string GetDoubleQuotedJson(const string16& str);
|
/external/chromium/base/threading/ |
non_thread_safe_impl.h | 9 #include "base/base_api.h" 20 class BASE_API NonThreadSafeImpl {
|
worker_pool.h | 9 #include "base/base_api.h" 24 class BASE_API WorkerPool {
|
thread_restrictions.h | 8 #include "base/base_api.h" 39 class BASE_API ThreadRestrictions { 43 class BASE_API ScopedAllowIO { 56 class BASE_API ScopedAllowSingleton {
|