Searched defs:fn (Results 1 - 8 of 8) sorted by relevance

/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/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:__anon18
119 void RegisterFunction(const char* name, Function fn);
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;
/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/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/minadbd/
H A Dfdevent.c47 static void fatal(const char *fn, const char *fmt, ...) argument
51 fprintf(stderr, "%s:", fn);
/bootable/recovery/minzip/
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

Completed in 58 milliseconds