Home
last modified time | relevance | path

Searched refs:fn (Results 1 – 12 of 12) sorted by relevance

/bootable/recovery/tools/ota/
Dcheck-lost+found.c76 char fn[PATH_MAX]; in main() local
77 snprintf(fn, sizeof(fn), "%s/%s", kPartitions[i], "dirty"); in main()
78 fd = open(fn, O_WRONLY|O_CREAT, 0444); in main()
80 write(fd, fn, sizeof(fn)); // write, you know, some data in main()
82 unlink(fn); in main()
98 char fn[PATH_MAX]; in main() local
99 snprintf(fn, sizeof(fn), "%s/%s", kPartitions[i], "lost+found"); in main()
100 DIR *dir = opendir(fn); in main()
102 fprintf(out, "Can't open %s: %s\n", fn, strerror(errno)); in main()
112 fprintf(out, "OMGZ FOUND %d FILES IN %s\n", count, fn); in main()
[all …]
/bootable/recovery/
Dmake-overlay.py79 fn = "icon_installing_overlay%02d.png" % (num+1,) variable
80 out.save(fn)
81 print "saved", fn
90 fn = "icon_installing.png" variable
91 base.save(fn)
92 print "saved", fn
Dbootloader.cpp145 static void wait_for_device(const char* fn) { in wait_for_device() argument
151 ret = stat(fn, &buf); in wait_for_device()
153 printf("stat %s try %d: %s\n", fn, tries, strerror(errno)); in wait_for_device()
158 printf("failed to stat %s\n", fn); in wait_for_device()
/bootable/recovery/applypatch/
Dimgdiff_test.sh81 local fn=$1
84 unzip -p $START_OTA_PACKAGE $fn > $tmpdir/source
85 unzip -p $END_OTA_PACKAGE $fn > $tmpdir/target
88 …echo "patch for $fn is $(size $tmpdir/patch) [of $(size $tmpdir/target)] ($(size $tmpdir/patch.bs)…
89 …echo "$fn $(size $tmpdir/patch) of $(size $tmpdir/target) bsdiff $(size $tmpdir/patch.bs)" >> /tmp…
96 || fail "applypatch of $fn failed"
/bootable/recovery/edify/
Dexpr.h61 Function fn; member
97 Expr* Build(Function fn, YYLTYPE loc, int count, ...);
114 Function fn; member
119 void RegisterFunction(const char* name, Function fn);
Dparser.y70 $$->fn = Literal;
91 $$->fn = FindFunction($1);
92 if ($$->fn == NULL) {
Dexpr.c36 Value* v = expr->fn(expr->name, state, expr->argc, expr->argv); in Evaluate()
49 return expr->fn(expr->name, state, expr->argc, expr->argv); in EvaluateValue()
327 Expr* Build(Function fn, YYLTYPE loc, int count, ...) { in Build() argument
331 e->fn = fn; in Build()
353 void RegisterFunction(const char* name, Function fn) { in RegisterFunction() argument
359 fn_table[fn_entries].fn = fn; in RegisterFunction()
381 return nf->fn; in FindFunction()
Dmain.c167 n->name == NULL ? "(NULL)" : n->name, n->fn, n->start, n->end, in ExprDump()
/bootable/diskinstaller/
Dinstaller.c61 read_conf_file(const char *fn) in read_conf_file() argument
64 config_load_file(root, fn); in read_conf_file()
67 ALOGE("Could not read config file %s", fn); in read_conf_file()
/bootable/recovery/minzip/
DZip.h222 void (*callback)(const char *fn, void*), void *cookie,
DZip.c933 void (*callback)(const char *fn, void *), void *cookie, in mzExtractRecursive() argument
/bootable/recovery/minadbd/
Dfdevent.c47 static void fatal(const char *fn, const char *fmt, ...) in fatal() argument
51 fprintf(stderr, "%s:", fn); in fatal()