HomeSort by relevance Sort by last modified time
    Searched refs:BASE_EXPORT (Results 26 - 50 of 227) sorted by null

12 3 4 5 6 7 8 910

  /external/chromium_org/base/time/
tick_clock.h 8 #include "base/base_export.h"
27 class BASE_EXPORT TickClock {
default_clock.h 8 #include "base/base_export.h"
15 class BASE_EXPORT DefaultClock : public Clock {
default_tick_clock.h 8 #include "base/base_export.h"
15 class BASE_EXPORT DefaultTickClock : public TickClock {
  /external/chromium_org/base/
value_conversions.h 10 #include "base/base_export.h"
21 BASE_EXPORT StringValue* CreateFilePathValue(const FilePath& in_value);
22 BASE_EXPORT bool GetValueAsFilePath(const Value& value, FilePath* file_path);
24 BASE_EXPORT StringValue* CreateTimeDeltaValue(const TimeDelta& time);
25 BASE_EXPORT bool GetValueAsTimeDelta(const Value& value, TimeDelta* time);
linux_util.h 13 #include "base/base_export.h"
17 BASE_EXPORT extern const char kFindInodeSwitch[];
21 BASE_EXPORT extern char g_linux_distro[];
24 BASE_EXPORT std::string GetLinuxDistro();
27 BASE_EXPORT void SetLinuxDistro(const std::string& distro);
30 BASE_EXPORT bool FileDescriptorGetInode(ino_t* inode_out, int fd);
34 BASE_EXPORT bool FindProcessHoldingSocket(pid_t* pid_out, ino_t socket_inode);
41 BASE_EXPORT pid_t FindThreadIDWithSyscall(pid_t pid,
file_util.h 26 #include "base/base_export.h"
51 BASE_EXPORT FilePath MakeAbsoluteFilePath(const FilePath& input);
58 BASE_EXPORT int64 ComputeDirectorySize(const FilePath& root_path);
72 BASE_EXPORT bool DeleteFile(const FilePath& path, bool recursive);
80 BASE_EXPORT bool DeleteFileAfterReboot(const FilePath& path);
88 BASE_EXPORT bool Move(const FilePath& from_path, const FilePath& to_path);
96 BASE_EXPORT bool ReplaceFile(const FilePath& from_path,
102 BASE_EXPORT bool CopyFile(const FilePath& from_path, const FilePath& to_path);
111 BASE_EXPORT bool CopyDirectory(const FilePath& from_path,
117 BASE_EXPORT bool PathExists(const FilePath& path)
    [all...]
base64.h 10 #include "base/base_export.h"
17 BASE_EXPORT bool Base64Encode(const StringPiece& input, std::string* output);
21 BASE_EXPORT bool Base64Decode(const StringPiece& input, std::string* output);
sha1.h 10 #include "base/base_export.h"
20 BASE_EXPORT std::string SHA1HashString(const std::string& str);
24 BASE_EXPORT void SHA1HashBytes(const unsigned char* data, size_t len,
single_thread_task_runner.h 8 #include "base/base_export.h"
24 class BASE_EXPORT SingleThreadTaskRunner : public SequencedTaskRunner {
platform_file.h 15 #include "base/base_export.h"
94 struct BASE_EXPORT PlatformFileInfo {
134 BASE_EXPORT PlatformFile CreatePlatformFile(const FilePath& name,
141 BASE_EXPORT PlatformFile CreatePlatformFileUnsafe(const FilePath& name,
146 BASE_EXPORT FILE* FdopenPlatformFile(PlatformFile file, const char* mode);
149 BASE_EXPORT bool ClosePlatformFile(PlatformFile file);
154 BASE_EXPORT int64 SeekPlatformFile(PlatformFile file,
163 BASE_EXPORT int ReadPlatformFile(PlatformFile file, int64 offset,
167 BASE_EXPORT int ReadPlatformFileAtCurrentPos(PlatformFile file,
173 BASE_EXPORT int ReadPlatformFileNoBestEffort(PlatformFile file, int64 offset
    [all...]
  /external/chromium_org/base/nix/
xdg_util.h 15 #include "base/base_export.h"
29 BASE_EXPORT extern const char kDotConfigDir[];
32 BASE_EXPORT extern const char kXdgConfigHomeEnvVar[];
39 BASE_EXPORT FilePath GetXDGDirectory(Environment* env, const char* env_name,
45 BASE_EXPORT FilePath GetXDGUserDirectory(const char* dir_name,
63 BASE_EXPORT DesktopEnvironment GetDesktopEnvironment(Environment* env);
67 BASE_EXPORT const char* GetDesktopEnvironmentName(DesktopEnvironment env);
69 BASE_EXPORT const char* GetDesktopEnvironmentName(Environment* env);
  /external/chromium_org/base/android/
jni_android.h 13 #include "base/base_export.h"
29 BASE_EXPORT JNIEnv* AttachCurrentThread();
32 BASE_EXPORT void DetachFromVM();
36 BASE_EXPORT void InitVM(JavaVM* vm);
41 BASE_EXPORT void InitApplicationContext(JNIEnv* env,
47 const BASE_EXPORT jobject GetApplicationContext();
54 BASE_EXPORT ScopedJavaLocalRef<jclass> GetClass(JNIEnv* env,
58 BASE_EXPORT bool HasClass(JNIEnv* env, const char* class_name);
61 class BASE_EXPORT MethodID {
94 BASE_EXPORT jmethodID GetMethodIDFromClassName(JNIEnv* env
    [all...]
fifo_utils.h 10 #include "base/base_export.h"
21 BASE_EXPORT bool CreateFIFO(const FilePath& path, int mode);
25 BASE_EXPORT bool RedirectStream(FILE* stream,
jni_string.h 12 #include "base/base_export.h"
19 BASE_EXPORT void ConvertJavaStringToUTF8(JNIEnv* env,
22 BASE_EXPORT std::string ConvertJavaStringToUTF8(JNIEnv* env, jstring str);
23 BASE_EXPORT std::string ConvertJavaStringToUTF8(const JavaRef<jstring>& str);
26 BASE_EXPORT ScopedJavaLocalRef<jstring> ConvertUTF8ToJavaString(
31 BASE_EXPORT void ConvertJavaStringToUTF16(JNIEnv* env,
34 BASE_EXPORT string16 ConvertJavaStringToUTF16(JNIEnv* env, jstring str);
35 BASE_EXPORT string16 ConvertJavaStringToUTF16(const JavaRef<jstring>& str);
38 BASE_EXPORT ScopedJavaLocalRef<jstring> ConvertUTF16ToJavaString(
base_jni_registrar.h 10 #include "base/base_export.h"
16 BASE_EXPORT bool RegisterJni(JNIEnv* env);
  /external/chromium_org/base/strings/
sys_string_conversions.h 14 #include "base/base_export.h"
32 BASE_EXPORT std::string SysWideToUTF8(const std::wstring& wide);
33 BASE_EXPORT std::wstring SysUTF8ToWide(const StringPiece& utf8);
38 BASE_EXPORT std::string SysWideToNativeMB(const std::wstring& wide);
39 BASE_EXPORT std::wstring SysNativeMBToWide(const StringPiece& native_mb);
48 BASE_EXPORT std::wstring SysMultiByteToWide(const StringPiece& mb,
50 BASE_EXPORT std::string SysWideToMultiByte(const std::wstring& wide,
63 BASE_EXPORT CFStringRef SysUTF8ToCFStringRef(const std::string& utf8);
64 BASE_EXPORT CFStringRef SysUTF16ToCFStringRef(const string16& utf16);
67 BASE_EXPORT NSString* SysUTF8ToNSString(const std::string& utf8)
    [all...]
utf_string_conversions.h 10 #include "base/base_export.h"
22 BASE_EXPORT bool WideToUTF8(const wchar_t* src, size_t src_len,
24 BASE_EXPORT std::string WideToUTF8(const std::wstring& wide);
25 BASE_EXPORT bool UTF8ToWide(const char* src, size_t src_len,
27 BASE_EXPORT std::wstring UTF8ToWide(const StringPiece& utf8);
29 BASE_EXPORT bool WideToUTF16(const wchar_t* src, size_t src_len,
31 BASE_EXPORT string16 WideToUTF16(const std::wstring& wide);
32 BASE_EXPORT bool UTF16ToWide(const char16* src, size_t src_len,
34 BASE_EXPORT std::wstring UTF16ToWide(const string16& utf16);
36 BASE_EXPORT bool UTF8ToUTF16(const char* src, size_t src_len, string16* output)
    [all...]
  /external/chromium_org/base/process/
kill.h 36 BASE_EXPORT bool KillProcesses(const FilePath::StringType& executable_name,
44 BASE_EXPORT bool KillProcess(ProcessHandle process, int exit_code, bool wait);
49 BASE_EXPORT bool KillProcessGroup(ProcessHandle process_group_id);
53 BASE_EXPORT bool KillProcessById(ProcessId process_id,
66 BASE_EXPORT TerminationStatus GetTerminationStatus(ProcessHandle handle,
74 BASE_EXPORT TerminationStatus WaitForTerminationStatus(ProcessHandle handle,
82 BASE_EXPORT bool WaitForExitCode(ProcessHandle handle, int* exit_code);
90 BASE_EXPORT bool WaitForExitCodeWithTimeout(ProcessHandle handle,
98 BASE_EXPORT bool WaitForProcessesToExit(
106 BASE_EXPORT bool WaitForSingleProcess(ProcessHandle handle
    [all...]
process_handle.h 8 #include "base/base_export.h"
38 BASE_EXPORT ProcessId GetCurrentProcId();
41 BASE_EXPORT ProcessHandle GetCurrentProcessHandle();
45 BASE_EXPORT bool OpenProcessHandle(ProcessId pid, ProcessHandle* handle);
53 BASE_EXPORT bool OpenPrivilegedProcessHandle(ProcessId pid,
58 BASE_EXPORT bool OpenProcessHandleWithAccess(ProcessId pid,
63 BASE_EXPORT void CloseProcessHandle(ProcessHandle process);
68 BASE_EXPORT ProcessId GetProcId(ProcessHandle process);
80 BASE_EXPORT bool GetProcessIntegrityLevel(ProcessHandle process,
86 BASE_EXPORT FilePath GetProcessExecutablePath(ProcessHandle process)
    [all...]
  /external/chromium_org/sandbox/linux/suid/
process_util.h 14 #include "base/base_export.h"
24 BASE_EXPORT bool AdjustOOMScore(pid_t process, int score);
30 BASE_EXPORT bool AdjustLowMemoryMargin(int64_t margin_mb);
  /external/chromium_org/base/json/
string_escape.h 12 #include "base/base_export.h"
22 BASE_EXPORT void JsonDoubleQuote(const std::string& str,
27 BASE_EXPORT std::string GetDoubleQuotedJson(const std::string& str);
29 BASE_EXPORT void JsonDoubleQuote(const string16& str,
34 BASE_EXPORT std::string GetDoubleQuotedJson(const string16& str);
  /external/chromium_org/base/message_loop/
message_pump_dispatcher.h 8 #include "base/base_export.h"
21 class BASE_EXPORT MessagePumpDispatcher {
  /external/chromium_org/base/power_monitor/
power_observer.h 8 #include "base/base_export.h"
13 class BASE_EXPORT PowerObserver {
  /external/chromium_org/base/threading/
non_thread_safe_impl.h 8 #include "base/base_export.h"
19 class BASE_EXPORT NonThreadSafeImpl {
  /external/chromium_org/base/debug/
crash_logging.h 11 #include "base/base_export.h"
27 BASE_EXPORT void SetCrashKeyValue(const base::StringPiece& key,
29 BASE_EXPORT void ClearCrashKey(const base::StringPiece& key);
32 BASE_EXPORT void SetCrashKeyToStackTrace(const base::StringPiece& key,
38 BASE_EXPORT void SetCrashKeyFromAddresses(const base::StringPiece& key,
44 class BASE_EXPORT ScopedCrashKey {
56 struct BASE_EXPORT CrashKey {
72 BASE_EXPORT size_t InitCrashKeys(const CrashKey* const keys, size_t count,
76 BASE_EXPORT const CrashKey* LookupCrashKey(const base::StringPiece& key);
84 BASE_EXPORT void SetCrashKeyReportingFunctions
    [all...]

Completed in 725 milliseconds

12 3 4 5 6 7 8 910