Searched refs:end (Results 1 - 12 of 12) sorted by relevance

/bootable/recovery/edify/
H A Dyydefs.h22 int start, end; member in struct:__anon8
29 (Current).end = YYRHSLOC(Rhs, N).end; \
32 (Current).end = YYRHSLOC(Rhs, 0).end; \
H A Dparser.y75 $$->end = @$.end;
77 | '(' expr ')' { $$ = $2; $$->start=@$.start; $$->end=@$.end; }
78 | expr ';' { $$ = $1; $$->start=@1.start; $$->end=@1.end; }
80 | error ';' expr { $$ = $3; $$->start=@$.start; $$->end=@$.end; }
102 $$->end = @$.end;
[all...]
H A Dlexer.l32 #define ADVANCE do {yylloc.start=gPos; yylloc.end=gPos+yyleng; \
59 yylloc.end = gPos;
H A Dmain.c164 char temp = script[n->end];
165 script[n->end] = '\0';
167 n->name == NULL ? "(NULL)" : n->name, n->fn, n->start, n->end,
169 script[n->end] = temp;
H A Dexpr.c151 int len = argv[i]->end - argv[i]->start;
286 char* end; local
288 long l_int = strtol(left, &end, 10);
289 if (left[0] == '\0' || *end != '\0') {
294 long r_int = strtol(right, &end, 10);
295 if (right[0] == '\0' || *end != '\0') {
341 e->end = loc.end;
H A Dexpr.h65 int start, end; member in struct:Expr
/bootable/recovery/tools/ota/
H A Dadd-property-tag.c49 char *end; local
50 int num = strtoul(pos + strlen(tag), &end, 10);
51 strcpy(pos, end);
57 const char *end = line + strlen(line); local
58 while (end > line && isspace(end[-1])) --end;
60 fprintf(out, "%.*s%s%d%s", end - line, line, tag, number, end);
62 fprintf(out, "%.*s%s%s", end
[all...]
/bootable/recovery/minzip/
H A DSysUtil.c49 off_t start, end; local
56 end = lseek(fd, 0L, SEEK_END);
59 if (start == (off_t) -1 || end == (off_t) -1) {
64 length = end - start;
/bootable/recovery/minadbd/
H A Dadb.c231 char *type, *product, *end; local
243 end = strchr(product, ':');
244 if(end) *end = 0;
/bootable/recovery/updater/
H A Dinstall.c201 // if fs_size < 0, then reserve that many bytes at the end of the partition
539 char* end; local
543 int uid = strtoul(args[0], &end, 0);
544 if (*end != '\0' || args[0][0] == 0) {
549 int gid = strtoul(args[1], &end, 0);
550 if (*end != '\0' || args[1][0] == 0) {
556 int dir_mode = strtoul(args[2], &end, 0);
557 if (*end != '\0' || args[2][0] == 0) {
562 int file_mode = strtoul(args[3], &end, 0);
563 if (*end !
[all...]
H A DAndroid.mk14 # Build only in eng, so we don't end up with a copy of this in /system
/bootable/recovery/
H A Dscreen_ui.cpp304 double end = now(); local
306 double delay = interval - (end-start);

Completed in 1112 milliseconds