Searched defs:file (Results 1 - 9 of 9) sorted by relevance

/build/core/combo/
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
H A DHOST_darwin-x86.mk5 # you may not use this file except in compliance with the License.
151 # $(1): The file to check
152 define get-file-size
/build/core/
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)
47 # copy-one-dist-file to avoid multiple rules for the same target.
54 # $(2): the dist files to add to those goals. If the file contains ':',
55 # the text following the colon is the name that the file is copied
59 $(foreach file,
[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 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 # $(2): the file name pattern to be passed to find as "-name".
364 ## a particular file. Returns the first match found,
368 define find-parent-file
373 $(call find-parent-file,$(patsubst %/,%,$(dir $(1))),$(2)) \
389 ## $(call add-prebuilt-file, srcfile, [targetclass])
392 define add-prebuilt-file
412 $(foreach f,$(2),$(call add-prebuilt-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.
138 private static X509Certificate readPublicKey(File file) argument
140 FileInputStream input = new FileInputStream(file);
152 * @param keyFile The file containing the private key. Used to prompt the user.
173 * @param keyFile The file containing the private key
202 private static PrivateKey readPrivateKey(File file) argument
204 DataInputStream input = new DataInputStream(new FileInputStream(file));
206 byte[] bytes = new byte[(int) file.length()];
209 KeySpec spec = decryptPrivateKey(bytes, file);
225 * Add the hash(es) of every file t
[all...]

Completed in 195 milliseconds