Searched refs:str (Results 1 – 12 of 12) sorted by relevance
/bootable/recovery/updater_sample/tools/ |
D | gen_update_config.py | 130 type=str, 145 type=str, 148 type=str, 151 type=str,
|
/bootable/recovery/edify/include/edify/ |
D | expr.h | 63 Value(Type type, std::string str) : type(type), data(std::move(str)) {} in Value() 153 Value* StringValue(const char* str); 155 Value* StringValue(const std::string& str); 157 int ParseString(const std::string& str, std::unique_ptr<Expr>* root, int* error_count);
|
/bootable/recovery/edify/ |
D | expr.cpp | 67 Value* StringValue(const char* str) { in StringValue() argument 68 if (str == nullptr) { in StringValue() 71 return new Value(Value::Type::STRING, str); in StringValue() 74 Value* StringValue(const std::string& str) { in StringValue() argument 75 return StringValue(str.c_str()); in StringValue() 84 std::string str; in ConcatFn() local 85 if (!Evaluate(state, argv[i], &str)) { in ConcatFn() 88 result += str; in ConcatFn()
|
D | parser.yy | 60 char* str; 66 %token <str> STRING BAD 141 int ParseString(const std::string& str, std::unique_ptr<Expr>* root, int* error_count) { 142 yy_switch_to_buffer(yy_scan_string(str.c_str()));
|
D | lexer.ll | 58 yylval.str = strdup(string_buffer.c_str()); 97 yylval.str = strdup(yytext);
|
/bootable/recovery/updater/ |
D | updater_runtime_dynamic_partitions.cpp | 124 auto str = arg(pos); in uint_arg() local 126 if (!android::base::ParseUint(str, &ret)) { in uint_arg() 127 LOG(ERROR) << "Op " << op() << " expects uint64 for argument " << name << ", got " << str; in uint_arg()
|
D | install.cpp | 585 std::string str = android::base::Trim(line.substr(0, equal_pos)); in FileGetPropFn() local 588 if (key != str) continue; in FileGetPropFn()
|
/bootable/recovery/applypatch/include/applypatch/ |
D | applypatch.h | 46 int ParseSha1(const std::string& str, uint8_t* digest);
|
/bootable/recovery/ |
D | interlace-frames.py | 60 meta.add_text("Frames", str(N))
|
D | recovery.cpp | 570 for (const auto& str : kBootreasonBlocklist) { in bootreason_in_blocklist() local 571 if (android::base::EqualsIgnoreCase(str, bootreason)) return true; in bootreason_in_blocklist()
|
/bootable/recovery/applypatch/ |
D | applypatch.cpp | 231 int ParseSha1(const std::string& str, uint8_t* digest) { in ParseSha1() argument 232 const char* ps = str.c_str(); in ParseSha1()
|
/bootable/recovery/recovery_ui/ |
D | screen_ui.cpp | 1051 std::string str; in PrintV() local 1052 android::base::StringAppendV(&str, fmt, ap); in PrintV() 1055 fputs(str.c_str(), stdout); in PrintV() 1060 for (const char* ptr = str.c_str(); *ptr != '\0'; ++ptr) { in PrintV()
|