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

/bootable/recovery/tools/ota/
H A Dcheck-lost+found.c76 char fn[PATH_MAX]; local
77 snprintf(fn, sizeof(fn), "%s/%s", kPartitions[i], "dirty");
78 fd = open(fn, O_WRONLY|O_CREAT, 0444);
80 write(fd, fn, sizeof(fn)); // write, you know, some data
82 unlink(fn);
98 char fn[PATH_MAX]; local
99 snprintf(fn, sizeof(fn), "
[all...]
/bootable/recovery/
H A 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
H A Dbootloader.cpp145 static void wait_for_device(const char* fn) { argument
151 ret = stat(fn, &buf);
153 printf("stat %s try %d: %s\n", fn, tries, strerror(errno));
158 printf("failed to stat %s\n", fn);
/bootable/recovery/applypatch/
H A 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) with bsdiff)"
89 echo "$fn $(size $tmpdir/patch) of $(size $tmpdir/target) bsdiff $(size $tmpdir/patch.bs)" >> /tmp/stats.txt
96 || fail "applypatch of $fn failed"
/bootable/recovery/edify/
H A Dexpr.h61 Function fn; member in struct:Expr
97 Expr* Build(Function fn, YYLTYPE loc, int count, ...);
114 Function fn; member in struct:__anon7
119 void RegisterFunction(const char* name, Function fn);
H A Dparser.y70 $$->fn = Literal;
91 $$->fn = FindFunction($1);
92 if ($$->fn == NULL) {
H A Dexpr.c36 Value* v = expr->fn(expr->name, state, expr->argc, expr->argv);
49 return expr->fn(expr->name, state, expr->argc, expr->argv);
327 Expr* Build(Function fn, YYLTYPE loc, int count, ...) { argument
331 e->fn = fn;
353 void RegisterFunction(const char* name, Function fn) { argument
359 fn_table[fn_entries].fn = fn;
381 return nf->fn;
H A Dmain.c167 n->name == NULL ? "(NULL)" : n->name, n->fn, n->start, n->end,
/bootable/diskinstaller/
H A Dinstaller.c61 read_conf_file(const char *fn) argument
64 config_load_file(root, fn);
67 ALOGE("Could not read config file %s", fn);
/bootable/recovery/minzip/
H A DZip.h222 void (*callback)(const char *fn, void*), void *cookie,
H A DZip.c933 void (*callback)(const char *fn, void *), void *cookie,
930 mzExtractRecursive(const ZipArchive *pArchive, const char *zipDir, const char *targetDir, int flags, const struct utimbuf *timestamp, void (*callback)(const char *fn, void *), void *cookie, struct selabel_handle *sehnd) argument
/bootable/recovery/minadbd/
H A Dfdevent.c47 static void fatal(const char *fn, const char *fmt, ...) argument
51 fprintf(stderr, "%s:", fn);

Completed in 954 milliseconds