Home
last modified time | relevance | path

Searched refs:s (Results 1 – 16 of 16) sorted by relevance

/bootable/recovery/minadbd/
Dminadbd_services.cpp63 int s[2]; in create_service_thread() local
64 if (adb_socketpair(s)) { in create_service_thread()
73 sti->fd = s[1]; in create_service_thread()
77 adb_close(s[0]); in create_service_thread()
78 adb_close(s[1]); in create_service_thread()
83 VLOG(SERVICES) << "service thread started, " << s[0] << ":" << s[1]; in create_service_thread()
84 return s[0]; in create_service_thread()
/bootable/recovery/fonts/
DOFL.txt30 Holder(s) under this license and clearly marked as such. This may
34 copyright statement(s).
37 distributed by the Copyright Holder(s).
64 Name(s) unless explicit written permission is granted by the corresponding
68 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
70 Modified Version, except to acknowledge the contribution(s) of the
71 Copyright Holder(s) and the Author(s) or with their explicit written
/bootable/recovery/edify/
Dparser.yy33 void yyerror(std::unique_ptr<Expr>* root, int* error_count, const char* s);
130 void yyerror(std::unique_ptr<Expr>* root, int* error_count, const char* s) {
131 if (strlen(s) == 0) {
132 s = "syntax error";
134 printf("line %d col %d: %s\n", gLine, gColumn, s);
DREADME.md46 - There's no distinction between quoted and unquoted strings; the
89 second argument only if it's needed to determine the truth of the
Dexpr.cpp39 static bool BooleanString(const std::string& s) { in BooleanString() argument
40 return !s.empty(); in BooleanString()
/bootable/recovery/bootloader_message/
Dbootloader_message.cpp157 for (const auto& s : options) { in write_bootloader_message() local
158 strlcat(boot.recovery, s.c_str(), sizeof(boot.recovery)); in write_bootloader_message()
159 if (s.back() != '\n') { in write_bootloader_message()
178 for (const auto& s : options) { in update_bootloader_message() local
179 strlcat(boot.recovery, s.c_str(), sizeof(boot.recovery)); in update_bootloader_message()
180 if (s.back() != '\n') { in update_bootloader_message()
/bootable/recovery/minui/include/minui/
Dminui.h60 void gr_text(const GRFont* font, int x, int y, const char *s, bool bold);
61 int gr_measure(const GRFont* font, const char *s);
/bootable/recovery/minui/
Dgraphics.cpp55 int gr_measure(const GRFont* font, const char *s) in gr_measure() argument
57 return font->char_width * strlen(s); in gr_measure()
98 void gr_text(const GRFont* font, int x, int y, const char *s, bool bold) in gr_text() argument
108 while ((ch = *s++)) { in gr_text()
/bootable/recovery/tests/component/
Dverifier_test.cpp130 std::string package = "\x50\x4b\x05\x06"s + std::string(12, '\0') + "\xff\xff\xff\xff\x00\x00"s; in TEST()
Dimgdiff_test.cpp31 std::string* s = static_cast<std::string*>(token); in MemorySink() local
32 s->append(reinterpret_cast<const char*>(data), len); in MemorySink()
/bootable/recovery/applypatch/
Dimgdiff_test.sh61 stat -c %s $1 | tr -d '\n'
Dapplypatch.cpp452 std::string* s = static_cast<std::string*>(token); in MemorySink() local
453 s->append(reinterpret_cast<const char*>(data), len); in MemorySink()
Dapplypatch.sh105 NEW_SIZE=$(stat -c %s $DATA_DIR/new.file)
/bootable/recovery/uncrypt/
Duncrypt.cpp280 std::string s = android::base::StringPrintf("%s\n%" PRId64 " %" PRId64 "\n", in produce_block_map() local
283 if (!android::base::WriteStringToFd(s, mapfd)) { in produce_block_map()
/bootable/recovery/
DNOTICE93 Contribution(s) alone or by combination of their Contribution(s)
94 with the Work to which such Contribution(s) was submitted. If You
Dinstall.cpp314 while (finish_log_temperature.wait_for(lck, 20s) == std::cv_status::timeout) { in log_max_temperature()