OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BRILLO_EXPORT
(Results
1 - 25
of
66
) sorted by null
1
2
3
/external/libbrillo/brillo/streams/
stream_errors.h
8
#include <brillo/
brillo_export
.h>
15
BRILLO_EXPORT
extern const char kDomain[];
17
BRILLO_EXPORT
extern const char kStreamClosed[];
18
BRILLO_EXPORT
extern const char kOperationNotSupported[];
19
BRILLO_EXPORT
extern const char kPartialData[];
20
BRILLO_EXPORT
extern const char kInvalidParameter[];
21
BRILLO_EXPORT
extern const char kTimeout[];
openssl_stream_bio.h
8
#include <brillo/
brillo_export
.h>
23
BRILLO_EXPORT
BIO* BIO_new_stream(brillo::Stream* stream);
stream_utils.h
9
#include <brillo/
brillo_export
.h>
16
BRILLO_EXPORT
bool ErrorStreamClosed(
20
BRILLO_EXPORT
bool ErrorOperationNotSupported(
24
BRILLO_EXPORT
bool ErrorReadPastEndOfStream(
28
BRILLO_EXPORT
bool ErrorOperationTimeout(
39
BRILLO_EXPORT
bool CheckInt64Overflow(
52
BRILLO_EXPORT
bool CalculateStreamPosition(
92
BRILLO_EXPORT
void CopyData(StreamPtr in_stream,
104
BRILLO_EXPORT
void CopyData(StreamPtr in_stream,
/external/libbrillo/brillo/
syslog_logging.h
10
#include <brillo/
brillo_export
.h>
27
BRILLO_EXPORT
void InitLog(int init_flags);
29
BRILLO_EXPORT
int GetLogFlags();
31
BRILLO_EXPORT
void SetLogFlags(int log_flags);
37
BRILLO_EXPORT
void OpenLog(const char* ident, bool log_pid);
42
BRILLO_EXPORT
void LogToString(bool enabled);
44
BRILLO_EXPORT
std::string GetLog();
46
BRILLO_EXPORT
void ClearLog();
49
BRILLO_EXPORT
bool FindLog(const char* string);
mime_utils.h
14
#include <brillo/
brillo_export
.h>
21
BRILLO_EXPORT
extern const char kApplication[]; // application
22
BRILLO_EXPORT
extern const char kAudio[]; // audio
23
BRILLO_EXPORT
extern const char kImage[]; // image
24
BRILLO_EXPORT
extern const char kMessage[]; // message
25
BRILLO_EXPORT
extern const char kMultipart[]; // multipart
26
BRILLO_EXPORT
extern const char kText[]; // test
27
BRILLO_EXPORT
extern const char kVideo[]; // video
32
BRILLO_EXPORT
extern const char kCharset[]; // charset=...
37
BRILLO_EXPORT
extern const char kJpeg[]; // image/jpe
[
all
...]
brillo_export.h
8
// Use
BRILLO_EXPORT
attribute to decorate your classes, methods and variables
10
// explicitly marked with
BRILLO_EXPORT
attribute is not exported.
12
// Put
BRILLO_EXPORT
in front of methods or variables and in between the
16
BRILLO_EXPORT
void foo();
18
class
BRILLO_EXPORT
Bar {
34
// used with "extern template" and combining this with
BRILLO_EXPORT
.
35
#define
BRILLO_EXPORT
__attribute__((__visibility__("default")))
42
class
BRILLO_EXPORT
Foo {
cryptohome.h
11
#include <brillo/
brillo_export
.h>
17
BRILLO_EXPORT
extern const char kGuestUserName[];
21
BRILLO_EXPORT
base::FilePath GetUserPathPrefix();
25
BRILLO_EXPORT
base::FilePath GetRootPathPrefix();
29
BRILLO_EXPORT
base::FilePath GetUserPath(const std::string& username);
34
BRILLO_EXPORT
base::FilePath GetHashedUserPath(
39
BRILLO_EXPORT
base::FilePath GetRootPath(const std::string& username);
42
BRILLO_EXPORT
base::FilePath GetDaemonPath(const std::string& username,
47
BRILLO_EXPORT
base::FilePath GetDaemonPathForHiddenUserHome(
52
BRILLO_EXPORT
bool IsSanitizedUserName(const std::string& sanitized)
[
all
...]
type_name_undecorate.h
11
#include <brillo/
brillo_export
.h>
41
extern template
BRILLO_EXPORT
const char* GetTypeTag<int8_t>();
42
extern template
BRILLO_EXPORT
const char* GetTypeTag<uint8_t>();
43
extern template
BRILLO_EXPORT
const char* GetTypeTag<int16_t>();
44
extern template
BRILLO_EXPORT
const char* GetTypeTag<uint16_t>();
45
extern template
BRILLO_EXPORT
const char* GetTypeTag<int32_t>();
46
extern template
BRILLO_EXPORT
const char* GetTypeTag<uint32_t>();
47
extern template
BRILLO_EXPORT
const char* GetTypeTag<int64_t>();
48
extern template
BRILLO_EXPORT
const char* GetTypeTag<uint64_t>();
49
extern template
BRILLO_EXPORT
const char* GetTypeTag<bool>()
[
all
...]
file_utils.h
11
#include <brillo/
brillo_export
.h>
23
BRILLO_EXPORT
bool TouchFile(const base::FilePath& path,
32
BRILLO_EXPORT
bool TouchFile(const base::FilePath& path);
42
BRILLO_EXPORT
bool WriteBlobToFile(const base::FilePath& path,
44
BRILLO_EXPORT
bool WriteStringToFile(const base::FilePath& path,
46
BRILLO_EXPORT
bool WriteToFile(const base::FilePath& path,
57
BRILLO_EXPORT
bool SyncFileOrDirectory(const base::FilePath& path,
73
BRILLO_EXPORT
bool WriteBlobToFileAtomic(const base::FilePath& path,
76
BRILLO_EXPORT
bool WriteToFileAtomic(const base::FilePath& path,
url_utils.h
13
#include <brillo/
brillo_export
.h>
22
BRILLO_EXPORT
std::string Combine(
25
BRILLO_EXPORT
std::string CombineMultiple(
33
BRILLO_EXPORT
std::string TrimOffQueryString(std::string* url);
44
BRILLO_EXPORT
std::string GetQueryString(const std::string& url,
48
BRILLO_EXPORT
data_encoding::WebParamList GetQueryStringParameters(
52
BRILLO_EXPORT
std::string GetQueryStringValue(
55
BRILLO_EXPORT
std::string GetQueryStringValue(
65
BRILLO_EXPORT
std::string RemoveQueryString(
70
BRILLO_EXPORT
std::string AppendQueryParam
[
all
...]
userdb_utils.h
14
#include <brillo/
brillo_export
.h>
21
BRILLO_EXPORT
bool GetUserInfo(
26
BRILLO_EXPORT
bool GetGroupInfo(
secure_blob.h
13
#include <brillo/
brillo_export
.h>
21
BRILLO_EXPORT
std::string BlobToString(const Blob& blob);
22
BRILLO_EXPORT
Blob BlobFromString(const std::string& bytes);
25
BRILLO_EXPORT
Blob CombineBlobs(const std::initializer_list<Blob>& blobs);
29
class
BRILLO_EXPORT
SecureBlob : public Blob {
65
BRILLO_EXPORT
BRILLO_DISABLE_ASAN void* SecureMemset(void* v, int c, size_t n);
70
BRILLO_EXPORT
int SecureMemcmp(const void* s1, const void* s2, size_t n);
data_encoding.h
12
#include <brillo/
brillo_export
.h>
23
BRILLO_EXPORT
std::string UrlEncode(const char* data, bool encodeSpaceAsPlus);
31
BRILLO_EXPORT
std::string UrlDecode(const char* data);
35
BRILLO_EXPORT
std::string WebParamsEncode(const WebParamList& params,
45
BRILLO_EXPORT
WebParamList WebParamsDecode(const std::string& data);
48
BRILLO_EXPORT
std::string Base64Encode(const void* data, size_t size);
52
BRILLO_EXPORT
std::string Base64EncodeWrapLines(const void* data, size_t size);
55
BRILLO_EXPORT
bool Base64Decode(const std::string& input, brillo::Blob* output);
asynchronous_signal_handler_interface.h
11
#include <brillo/
brillo_export
.h>
18
class
BRILLO_EXPORT
AsynchronousSignalHandlerInterface {
osrelease_reader.h
14
#include <brillo/
brillo_export
.h>
20
class
BRILLO_EXPORT
OsReleaseReader final {
/external/libbrillo/brillo/errors/
error_codes.h
10
#include <brillo/
brillo_export
.h>
17
BRILLO_EXPORT
extern const char kDomain[];
21
BRILLO_EXPORT
extern const char kDomain[];
22
BRILLO_EXPORT
extern const char kParseError[];
23
BRILLO_EXPORT
extern const char kObjectExpected[];
27
BRILLO_EXPORT
extern const char kDomain[];
31
BRILLO_EXPORT
extern const char kDomain[];
35
BRILLO_EXPORT
void AddSystemError(ErrorPtr* error,
/external/libbrillo/brillo/http/
http_request.h
16
#include <brillo/
brillo_export
.h>
26
BRILLO_EXPORT
extern const char kOptions[];
27
BRILLO_EXPORT
extern const char kGet[];
28
BRILLO_EXPORT
extern const char kHead[];
29
BRILLO_EXPORT
extern const char kPost[];
30
BRILLO_EXPORT
extern const char kPut[];
31
BRILLO_EXPORT
extern const char kPatch[]; // Non-standard HTTP/1.1 verb
32
BRILLO_EXPORT
extern const char kDelete[];
33
BRILLO_EXPORT
extern const char kTrace[];
34
BRILLO_EXPORT
extern const char kConnect[]
[
all
...]
http_utils.h
12
#include <brillo/
brillo_export
.h>
56
BRILLO_EXPORT
std::unique_ptr<Response> SendRequestAndBlock(
68
BRILLO_EXPORT
std::unique_ptr<Response> SendRequestWithNoDataAndBlock(
80
BRILLO_EXPORT
RequestID SendRequest(
95
BRILLO_EXPORT
RequestID SendRequest(
109
BRILLO_EXPORT
RequestID SendRequestWithNoData(
120
BRILLO_EXPORT
std::unique_ptr<Response> GetAndBlock(
129
BRILLO_EXPORT
RequestID Get(
139
BRILLO_EXPORT
std::unique_ptr<Response> HeadAndBlock(
147
BRILLO_EXPORT
RequestID Head
[
all
...]
http_proxy.h
13
#include <brillo/
brillo_export
.h>
35
BRILLO_EXPORT
bool GetChromeProxyServers(scoped_refptr<dbus::Bus> bus,
40
BRILLO_EXPORT
void GetChromeProxyServersAsync(
/external/libbrillo/policy/
resilient_policy_util.h
12
#include <brillo/
brillo_export
.h>
19
BRILLO_EXPORT
std::map<int, base::FilePath> GetSortedResilientPolicyFilePaths(
25
BRILLO_EXPORT
base::FilePath GetResilientPolicyFilePathForIndex(
33
BRILLO_EXPORT
bool ParseResilientPolicyFilePath(
policy_util.h
11
#include <brillo/
brillo_export
.h>
18
enum class
BRILLO_EXPORT
LoadPolicyResult {
31
BRILLO_EXPORT
LoadPolicyResult LoadPolicyFromPath(
/external/libbrillo/brillo/message_loops/
message_loop_utils.h
11
#include <brillo/
brillo_export
.h>
18
BRILLO_EXPORT
void MessageLoopRunUntil(
25
BRILLO_EXPORT
int MessageLoopRunMaxIterations(MessageLoop* loop,
/external/libbrillo/brillo/dbus/
utils.h
11
#include <brillo/
brillo_export
.h>
21
BRILLO_EXPORT
std::unique_ptr<dbus::Response> CreateDBusErrorResponse(
31
BRILLO_EXPORT
std::unique_ptr<dbus::Response> GetDBusError(
37
BRILLO_EXPORT
void AddDBusError(brillo::ErrorPtr* error,
dbus_connection.h
12
#include <brillo/
brillo_export
.h>
17
class
BRILLO_EXPORT
DBusConnection final {
/external/libbrillo/brillo/glib/
abstract_dbus_service.h
11
#include <brillo/
brillo_export
.h>
17
class
BRILLO_EXPORT
AbstractDbusService {
Completed in 171 milliseconds
1
2
3