Home
last modified time | relevance | path

Searched refs:start (Results 1 – 18 of 18) sorted by relevance

/bootable/recovery/edify/
Dyydefs.h22 int start, end; member
28 (Current).start = YYRHSLOC(Rhs, 1).start; \
31 (Current).start = YYRHSLOC(Rhs, 0).start; \
Dparser.y78 $$->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;
Dlexer.l32 #define ADVANCE do {yylloc.start=gPos; yylloc.end=gPos+yyleng; \
47 yylloc.start = gPos;
Dmain.c164 n->name == NULL ? "(NULL)" : n->name, n->fn, n->start, n->end, in ExprDump()
165 script+n->start); in ExprDump()
Dexpr.c151 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()
Dexpr.h65 int start, end; member
DREADME37 - Comments start with "#" and run to the end of the line.
/bootable/recovery/minzip/
DSysUtil.c24 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/
Dbsdiff.c60 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()
Dimgdiff.c138 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 …]
Dapplypatch.c415 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/
Dinit.rc4 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/
Dcheck-lost+found.c58 time_t start = time(NULL); in main() local
59 fprintf(out, "*** check-lost+found ***\nStarted: %s", ctime(&start)); in main()
/bootable/recovery/minui/
Dgraphics.cpp318 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/
Dmtdutils.c431 erase_info.start = pos; in write_block()
540 erase_info.start = pos; in mtd_erase_blocks()
/bootable/recovery/
Dscreen_ui.cpp325 double start = now(); in ProgressThreadLoop() local
355 double delay = interval - (end-start); in ProgressThreadLoop()
Drecovery.cpp908 time_t start = time(NULL); in main() local
924 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start)); in main()
/bootable/recovery/updater/
Dblockimg.c880 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()