/bootable/recovery/edify/ |
D | yydefs.h | 22 int start, end; member 28 (Current).start = YYRHSLOC(Rhs, 1).start; \ 31 (Current).start = YYRHSLOC(Rhs, 0).start; \
|
D | parser.y | 78 $$->start = @$.start; 81 | '(' expr ')' { $$ = $2; $$->start=@$.start; $$->end=@$.end; } 82 | expr ';' { $$ = $1; $$->start=@1.start; $$->end=@1.end; } 84 | error ';' expr { $$ = $3; $$->start=@$.start; $$->end=@$.end; } 105 $$->start = @$.start;
|
D | lexer.l | 32 #define ADVANCE do {yylloc.start=gPos; yylloc.end=gPos+yyleng; \ 47 yylloc.start = gPos;
|
D | main.c | 164 n->name == NULL ? "(NULL)" : n->name, n->fn, n->start, n->end, in ExprDump() 165 script+n->start); in ExprDump()
|
D | expr.c | 151 int len = argv[i]->end - argv[i]->start; in AssertFn() 155 memcpy(err_src + prefix_len, state->script + argv[i]->start, len); in AssertFn() 338 e->start = loc.start; in Build()
|
D | expr.h | 65 int start, end; member
|
D | README | 37 - Comments start with "#" and run to the end of the line.
|
/bootable/recovery/minzip/ |
D | SysUtil.c | 24 off_t start, end; in getFileStartAndLength() local 32 start = TEMP_FAILURE_RETRY(lseek(fd, 0L, SEEK_CUR)); in getFileStartAndLength() 35 if (TEMP_FAILURE_RETRY(lseek(fd, start, SEEK_SET)) == -1 || in getFileStartAndLength() 36 start == (off_t) -1 || end == (off_t) -1) { in getFileStartAndLength() 41 length = end - start; in getFileStartAndLength() 47 *start_ = start; in getFileStartAndLength() 62 off_t start; in sysMapFD() local 68 if (getFileStartAndLength(fd, &start, &length) < 0) in sysMapFD() 71 memPtr = mmap(NULL, length, PROT_READ, MAP_PRIVATE, fd, start); in sysMapFD() 74 fd, (int) start, strerror(errno)); in sysMapFD() [all …]
|
/bootable/recovery/applypatch/ |
D | bsdiff.c | 60 static void split(off_t *I,off_t *V,off_t start,off_t len,off_t h) in split() argument 65 for(k=start;k<start+len;k+=j) { in split() 67 for(i=1;k+i<start+len;i++) { in split() 83 x=V[I[start+len/2]+h]; in split() 85 for(i=start;i<start+len;i++) { in split() 89 jj+=start;kk+=jj; in split() 91 i=start;j=0;k=0; in split() 113 if(jj>start) split(I,V,start,jj-start,h); in split() 118 if(start+len>kk) split(I,V,kk,start+len-kk,h); in split()
|
D | imgdiff.c | 138 size_t start; // offset of chunk in original image file member 292 curr->start = 0; in ReadZip() 307 curr->start = pos; in ReadZip() 348 curr->start = pos; in ReadZip() 418 curr->start = pos; in ReadImage() 439 curr->start = pos; in ReadImage() 481 curr->start = pos; in ReadImage() 507 curr->start = pos; in ReadImage() 666 tgt->source_start = src->start; in MakePatch() 733 (chunks[in_end].start == in MergeAdjacentNormalChunks() [all …]
|
D | applypatch.c | 415 size_t start = 0; in WriteToPartition() local 425 if (TEMP_FAILURE_RETRY(lseek(fd, start, SEEK_SET)) == -1) { in WriteToPartition() 430 while (start < len) { in WriteToPartition() 431 size_t to_write = len - start; in WriteToPartition() 434 ssize_t written = TEMP_FAILURE_RETRY(write(fd, data+start, to_write)); in WriteToPartition() 439 start += written; in WriteToPartition() 477 start = len; in WriteToPartition() 501 start = p; in WriteToPartition() 506 if (start == len) { in WriteToPartition()
|
/bootable/recovery/etc/ |
D | init.rc | 4 start ueventd 5 start healthd 56 # Mount filesystems and start core system services. 93 # Always start adbd on userdebug and eng builds 96 start adbd
|
/bootable/recovery/tools/ota/ |
D | check-lost+found.c | 58 time_t start = time(NULL); in main() local 59 fprintf(out, "*** check-lost+found ***\nStarted: %s", ctime(&start)); in main()
|
/bootable/recovery/minui/ |
D | graphics.cpp | 318 time_t start = time(NULL); 348 printf("start %ld end %ld\n", (long)start, (long)end); 349 if (end > start) { 350 printf("%.2f fps\n", ((double)x) / (end-start));
|
/bootable/recovery/mtdutils/ |
D | mtdutils.c | 431 erase_info.start = pos; in write_block() 540 erase_info.start = pos; in mtd_erase_blocks()
|
/bootable/recovery/ |
D | screen_ui.cpp | 325 double start = now(); in ProgressThreadLoop() local 355 double delay = interval - (end-start); in ProgressThreadLoop()
|
D | recovery.cpp | 908 time_t start = time(NULL); in main() local 924 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start)); in main()
|
/bootable/recovery/updater/ |
D | blockimg.c | 880 int start = locs->size; in MoveRange() local 884 start -= blocks; in MoveRange() 885 memmove(dest + (locs->pos[i*2] * BLOCKSIZE), source + (start * BLOCKSIZE), in MoveRange()
|