OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WriteStringToFd
(Results
1 - 10
of
10
) sorted by null
/system/core/base/include/android-base/
file.h
34
bool
WriteStringToFd
(const std::string& content, int fd);
/system/core/adb/
adb_io_test.cpp
45
ASSERT_TRUE(android::base::
WriteStringToFd
(expected, tf.fd)) << strerror(errno);
59
ASSERT_TRUE(android::base::
WriteStringToFd
(expected, tf.fd)) << strerror(errno);
73
ASSERT_TRUE(android::base::
WriteStringToFd
(input, tf.fd)) << strerror(errno);
/system/core/base/
file.cpp
61
bool
WriteStringToFd
(const std::string& content, int fd) {
103
if (!
WriteStringToFd
(content, fd)) {
119
bool result =
WriteStringToFd
(content, fd);
file_test.cpp
69
TEST(file,
WriteStringToFd
) {
72
ASSERT_TRUE(android::base::
WriteStringToFd
("abc", tf.fd));
/frameworks/native/cmds/bugreportz/
bugreportz.cpp
42
android::base::
WriteStringToFd
(line, STDOUT_FILENO);
/system/core/adb/client/
main.cpp
156
if (!android::base::
WriteStringToFd
("OK\n", ack_reply_fd)) {
/bootable/recovery/uncrypt/
uncrypt.cpp
267
if (!android::base::
WriteStringToFd
(s, mapfd.get())) {
358
if (!android::base::
WriteStringToFd
(
364
if (!android::base::
WriteStringToFd
(
/system/core/bootstat/
boot_event_record_store.cpp
96
if (!android::base::
WriteStringToFd
(std::to_string(value), record_fd)) {
boot_event_record_store_test.cpp
52
if (!android::base::
WriteStringToFd
(std::to_string(value), record_fd)) {
/system/core/init/
util.cpp
207
int result = android::base::
WriteStringToFd
(content, fd) ? 0 : -1;
Completed in 380 milliseconds