Searched defs:file (Results 1 - 9 of 9) sorted by last modified time

/build/core/combo/
H A DHOST_darwin-x86.mk5 # you may not use this file except in compliance with the License.
138 # $(1): The file to check
139 define get-file-size
H A DHOST_linux-x86.mk5 # you may not use this file except in compliance with the License.
20 # $(1): The file to check
21 define get-file-size
H A DHOST_windows-x86.mk5 # you may not use this file except in compliance with the License.
73 # $(1): The file to check
75 define get-file-size
/build/core/
H A Ddefinitions.mk5 # you may not use this file except in compliance with the License.
89 # Generated class file names for Android resource.
333 ## Find various file types in a list of directories relative to $(LOCAL_PATH)
348 ## a particular file. Returns the first match found,
352 define find-parent-file
357 $(call find-parent-file,$(patsubst %/,%,$(dir $(1))),$(2)) \
373 ## $(call add-prebuilt-file, srcfile, [targetclass])
376 define add-prebuilt-file
396 $(foreach f,$(2),$(call add-prebuilt-file,$f,$(1)))
503 ## Evaluates to the timestamp file fo
[all...]
H A Ddex_preopt.mk33 # $(1): the input .jar or .apk file
34 # $(2): the output .odex file
35 define dexpreopt-one-file
55 $$(call dexpreopt-one-file,$$(PRIVATE_DBJ_JAR),$$@)
58 $$(call copy-file-to-target)
H A Ddistdir.mk5 # you may not use this file except in compliance with the License.
33 # $(1): source file
34 # $(2): destination file
35 # $(3): goals that should copy the file
37 define copy-one-dist-file
41 $$(copy-file-to-new-target-with-cp)
49 # $(2): the dist files to add to those goals. If the file contains ':',
50 # the text following the colon is the name that the file is copied
54 $(foreach file,$(2), \
55 $(eval fw := $(subst :,$(space),$(file))) \
[all...]
/build/core/tasks/
H A Dsdk-addon.mk4 # you may not use this file except in compliance with the License.
30 define stub-addon-jar-file
35 $(call stub-addon-jar-file,$(1)): $(1) | mkstubs
46 $(eval _src := $(call stub-addon-jar-file,$(_src))) \
68 $(eval $(call copy-one-file,$(_src),$(_dest))) \
99 # When not building an sdk_repo, just dist the addon zip file
/build/tools/atree/
H A Dfiles.cpp192 fprintf(stderr, "Could not open list file (%s): %s\n",
200 fprintf(stderr, "Could not seek to the end of file %s. (%s)\n",
210 fprintf(stderr, "Could not seek to the beginning of file %s. (%s)\n",
225 fprintf(stderr, "error reading file %s. (%s)\n",
358 fprintf(stderr, "%s:%d: couldn't locate source file: %s\n",
412 matches_excludes(const char* file, const vector<string>& excludes) argument
416 if (0 == fnmatch(it->c_str(), file, FNM_PERIOD)) {
/build/tools/signapk/
H A DSignApk.java5 * you may not use this file except in compliance with the License.
95 private static X509Certificate readPublicKey(File file) argument
97 FileInputStream input = new FileInputStream(file);
109 * @param keyFile The file containing the private key. Used to prompt the user.
130 * @param keyFile The file containing the private key
159 private static PrivateKey readPrivateKey(File file) argument
161 DataInputStream input = new DataInputStream(new FileInputStream(file));
163 byte[] bytes = new byte[(int) file.length()];
166 KeySpec spec = decryptPrivateKey(bytes, file);
181 /** Add the SHA1 of every file t
[all...]

Completed in 212 milliseconds