/bootable/recovery/edify/ |
D | README | 1 Update scripts (from donut onwards) are written in a new little 3 the old one ("amend"). This is a brief overview of the new language. 5 - The entire script is a single expression. 22 - When used as a boolean, the empty string is "false" and all other 33 - ";" is a binary operator; evaluating it just means to first evaluate 48 "a b" 49 a + " " + b 50 "a" + " " + "b" 51 "a\x20b" 52 a + "\x20b" [all …]
|
D | lexer.l | 68 \\x[0-9a-fA-F]{2} { 95 [a-zA-Z0-9_:/.]+ {
|
D | expr.c | 363 static int fn_entry_compare(const void* a, const void* b) { in fn_entry_compare() argument 364 const char* na = ((const NamedFunction*)a)->name; in fn_entry_compare()
|
/bootable/recovery/ |
D | NOTICE | 44 transformation or translation of a Source form, including but 49 Object form, made available under the License, as indicated by a 56 represent, as a whole, an original work of authorship. For the purposes 73 designated in writing by the copyright owner as "Not a Contribution." 76 on behalf of whom a Contribution has been received by Licensor and 80 this License, each Contributor hereby grants to You a perpetual, 87 this License, each Contributor hereby grants to You a perpetual, 95 institute patent litigation against any entity (including a 96 cross-claim or counterclaim in a lawsuit) alleging that the Work 97 or a Contribution incorporated within the Work constitutes direct [all …]
|
D | recovery.cpp | 602 static int compare_string(const void* a, const void* b) { in compare_string() argument 603 return strcmp(*(const char**)a, *(const char**)b); in compare_string()
|
/bootable/recovery/minadbd/ |
D | README.txt | 25 receives a single blob of data, writes it to a fixed filename, and 29 - only builds in adbd mode; builds as static library instead of a
|
/bootable/recovery/applypatch/ |
D | imgdiff.c | 169 static int fileentry_compare(const void* a, const void* b) { in fileentry_compare() argument 170 int ao = ((ZipFileEntry*)a)->data_offset; in fileentry_compare() 690 int AreChunksEqual(ImageChunk* a, ImageChunk* b) { in AreChunksEqual() argument 691 if (a->type != b->type) return 0; in AreChunksEqual() 693 switch (a->type) { in AreChunksEqual() 695 return a->len == b->len && memcmp(a->data, b->data, a->len) == 0; in AreChunksEqual() 698 return a->deflate_len == b->deflate_len && in AreChunksEqual() 699 memcmp(a->deflate_data, b->deflate_data, a->deflate_len) == 0; in AreChunksEqual() 702 printf("unknown chunk type %d\n", a->type); in AreChunksEqual()
|
D | applypatch.sh | 293 run_command ls /cache/a.file && fail # was deleted 296 run_command ls /cache/subdir/a.file || fail # wasn't deleted because it's in a subdir 302 run_command ls /cache/subdir/a.file || fail # wasn't deleted because it's in a subdir 312 run_command ls /cache/subdir/a.file || fail # still wasn't deleted because it's in a subdir 319 run_command ls /cache/subdir/a.file || fail # still wasn't deleted because it's in a subdir
|
D | NOTICE | 5 You may obtain a copy of the License at
|
D | applypatch.c | 111 static int compare_size_indices(const void* a, const void* b) { in compare_size_indices() argument 112 int aa = *(int*)a; in compare_size_indices()
|
/bootable/recovery/fonts/ |
D | OFL.txt | 4 This license is copied below, and is also available with a FAQ at: 15 efforts of academic and linguistic communities, and to provide a free and 41 Original Version, by changing formats or by porting the Font Software to a 49 a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
/bootable/recovery/minui/ |
D | minui.h | 38 void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a);
|
D | graphics.c | 204 void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a) in gr_color() argument 211 color[3] = ((a << 8) | a) + 1; in gr_color()
|
D | resources.c | 152 unsigned char a = 0xff; in res_create_surface() local 156 pRow[dx + 3] = a; in res_create_surface()
|