Home
last modified time | relevance | path

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

/bootable/recovery/minzip/
DSysUtil.c49 off_t start, end; in getFileStartAndLength() local
55 start = lseek(fd, 0L, SEEK_CUR); in getFileStartAndLength()
57 (void) lseek(fd, start, SEEK_SET); in getFileStartAndLength()
59 if (start == (off_t) -1 || end == (off_t) -1) { in getFileStartAndLength()
64 length = end - start; in getFileStartAndLength()
70 *start_ = start; in getFileStartAndLength()
85 off_t start; in sysLoadFileInShmem() local
91 if (getFileStartAndLength(fd, &start, &length) < 0) in sysLoadFileInShmem()
120 off_t start; in sysMapFileInShmem() local
126 if (getFileStartAndLength(fd, &start, &length) < 0) in sysMapFileInShmem()
[all …]
DSysUtil.h51 int sysMapFileSegmentInShmem(int fd, off_t start, long length,
/bootable/recovery/edify/
Dyydefs.h22 int start, end; member
28 (Current).start = YYRHSLOC(Rhs, 1).start; \
31 (Current).start = YYRHSLOC(Rhs, 0).start; \
Dparser.y74 $$->start = @$.start;
77 | '(' expr ')' { $$ = $2; $$->start=@$.start; $$->end=@$.end; }
78 | expr ';' { $$ = $1; $$->start=@1.start; $$->end=@1.end; }
80 | error ';' expr { $$ = $3; $$->start=@$.start; $$->end=@$.end; }
101 $$->start = @$.start;
Dlexer.l32 #define ADVANCE do {yylloc.start=gPos; yylloc.end=gPos+yyleng; \
47 yylloc.start = gPos;
Dmain.c167 n->name == NULL ? "(NULL)" : n->name, n->fn, n->start, n->end, in ExprDump()
168 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()
340 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/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()
417 curr->start = pos; in ReadImage()
438 curr->start = pos; in ReadImage()
472 curr->start = pos; in ReadImage()
498 curr->start = pos; in ReadImage()
657 tgt->source_start = src->start; in MakePatch()
724 (chunks[in_end].start == in MergeAdjacentNormalChunks()
[all …]
/bootable/recovery/etc/
Dinit.rc4 start ueventd
48 # Always start adbd on userdebug and eng builds
51 start adbd
/bootable/recovery/tools/ota/
Dcheck-lost+found.c57 time_t start = time(NULL); in main() local
58 fprintf(out, "*** check-lost+found ***\nStarted: %s", ctime(&start)); in main()
/bootable/diskinstaller/
Dinit.rc2 start ueventd
/bootable/recovery/minadbd/
Dsysdeps.h417 static __inline__ int adb_thread_create( adb_thread_t *pthread, adb_thread_func_t start, void* … in adb_thread_create() argument
424 return pthread_create( pthread, &attr, start, arg ); in adb_thread_create()
/bootable/recovery/
Dscreen_ui.cpp270 double start = now(); in progress_loop() local
306 double delay = interval - (end-start); in progress_loop()
Drecovery.cpp807 time_t start = time(NULL); in main() local
825 printf("Starting recovery on %s", ctime(&start)); in main()
/bootable/recovery/mtdutils/
Dmtdutils.c429 erase_info.start = pos; in write_block()
535 erase_info.start = pos; in mtd_erase_blocks()