HomeSort by relevance Sort by last modified time
    Searched refs:infile (Results 1 - 25 of 326) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/vboot_reference/utility/include/
bmpblk_util.h 10 int dump_bmpblock(const char *infile, int show_as_yaml,
  /external/bzip2/
format.pl 24 my $infile = shift;
25 # check infile exists
26 die "Can't find file \"$infile\""
27 unless -f $infile;
28 # check we can read infile
29 if (! -r $infile) {
30 die "Can't read input $infile\n";
32 # check we can open infile
33 open( INFILE,"<$infile" ) or
    [all...]
  /device/google/contexthub/firmware/
symcheck.sh 22 infile="$1"
29 echo -e "\n\nChecking '$infile' for forbidden symbols\n\n" >&2
44 if ${CROSS_COMPILE}nm -a "$infile" |grep -e "[0-9a-f]\{8\} [Tt] $look_for" >/dev/null
54 cp "$infile" "$outfile"
  /external/elfutils/tests/
run-strip-groups.sh 45 infile=testfile58
46 outfile=$infile.stripped
47 dbgfile=$infile.debug
49 testfiles $infile
52 testrun ${abs_top_builddir}/src/strip -o $outfile -f $dbgfile $infile
53 testrun ${abs_top_builddir}/src/elflint -q $infile
run-strip-reloc.sh 28 infile=$1
35 testrun ${abs_top_builddir}/src/strip -o $outfile1 -f $debugfile1 $infile ||
36 { echo "*** failure strip $infile"; status=1; }
39 -f $debugfile2 $infile ||
40 { echo "*** failure strip --reloc-debug-sections $infile"; status=1; }
44 { echo "*** failure readelf -a outfile1 $infile"; status=1; }
47 { echo "*** failure compare stripped files $infile"; status=1; }
54 { echo "*** failure --reloc-debug-sections not smaller $infile"; status=1; }
60 { echo "*** failure readelf -w debugfile1 $infile"; status=1; }
64 { echo "*** failure readelf -w debugfile2 $infile"; status=1;
    [all...]
  /external/libjpeg-turbo/
rdcolmap.c 80 read_gif_map (j_decompress_ptr cinfo, FILE *infile)
89 if ((header[i] = getc(infile)) == EOF)
105 R = getc(infile);
106 G = getc(infile);
107 B = getc(infile);
122 pbm_getc (FILE *infile)
128 ch = getc(infile);
131 ch = getc(infile);
139 read_pbm_integer (j_decompress_ptr cinfo, FILE *infile)
150 ch = pbm_getc(infile);
    [all...]
  /external/xmlrpcpp/test/
TestBase64Server.cpp 29 std::ifstream infile("pngnow.png", std::ios::binary);
30 if (infile.fail())
31 infile.open("../pngnow.png", std::ios::binary);
32 if (infile.fail())
39 char c = infile.get();
40 if (infile.eof()) break;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/
tool.py 18 infile = sys.stdin
21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
28 with infile:
30 obj = json.load(infile)
  /external/python/cpython2/Lib/json/
tool.py 18 infile = sys.stdin
21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
28 with infile:
30 obj = json.load(infile)
  /prebuilts/gdb/darwin-x86/lib/python2.7/json/
tool.py 18 infile = sys.stdin
21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
28 with infile:
30 obj = json.load(infile)
  /prebuilts/gdb/linux-x86/lib/python2.7/json/
tool.py 18 infile = sys.stdin
21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
28 with infile:
30 obj = json.load(infile)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
tool.py 18 infile = sys.stdin
21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
28 with infile:
30 obj = json.load(infile)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
tool.py 18 infile = sys.stdin
21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
28 with infile:
30 obj = json.load(infile)
  /build/soong/scripts/
toc.sh 37 ("${CROSS_COMPILE}readelf" -d "${infile}" | grep SONAME || echo "No SONAME for ${infile}") > "${outfile}.tmp"
38 "${CROSS_COMPILE}readelf" --dyn-syms "${infile}" | awk '{$2=""; $3=""; print}' >> "${outfile}.tmp"
42 otool -l "${infile}" | grep LC_ID_DYLIB -A 5 > "${outfile}.tmp"
43 nm -gP "${infile}" | cut -f1-2 -d" " | grep -v 'U$' >> "${outfile}.tmp"
50 i) infile="${OPTARG}" ;;
61 if [ -z "${infile}" ]; then
  /external/vboot_reference/futility/
cmd_vbutil_key.c 49 " --key <infile> RSA key file (.keyb or .pem)\n"
62 "Usage: " MYNAME " %s --unpack <infile>\n"
70 static int Pack(const char *infile, const char *outfile, uint64_t algorithm,
76 if (!infile || !outfile) {
81 pubkey = PublicKeyReadKeyb(infile, algorithm, version);
91 privkey = PrivateKeyReadPem(infile, algorithm);
101 VbExError("Unable to parse either .keyb or .pem from %s\n", infile);
106 static int Unpack(const char *infile, const char *outfile)
111 if (!infile) {
116 pubkey = PublicKeyRead(infile);
167 char *infile = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/
tool.py 18 infile = sys.stdin
21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
29 obj = json.load(infile)
  /external/libvpx/libvpx/
ivfdec.h 21 int ivf_read_frame(FILE *infile, uint8_t **buffer, size_t *bytes_read,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/tests/
test_tool.py 49 infile = test_support.TESTFN
50 with open(infile, "w") as fp:
51 self.addCleanup(os.remove, infile)
53 return infile
56 infile = self._create_infile()
57 rc, out, err = assert_python_ok('-m', 'json.tool', infile)
62 infile = self._create_infile()
64 rc, out, err = assert_python_ok('-m', 'json.tool', infile, outfile)
  /external/python/cpython2/Lib/json/tests/
test_tool.py 49 infile = test_support.TESTFN
50 with open(infile, "w") as fp:
51 self.addCleanup(os.remove, infile)
53 return infile
56 infile = self._create_infile()
57 rc, out, err = assert_python_ok('-m', 'json.tool', infile)
62 infile = self._create_infile()
64 rc, out, err = assert_python_ok('-m', 'json.tool', infile, outfile)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_tool.py 49 infile = test_support.TESTFN
50 with open(infile, "w") as fp:
51 self.addCleanup(os.remove, infile)
53 return infile
56 infile = self._create_infile()
57 rc, out, err = assert_python_ok('-m', 'json.tool', infile)
62 infile = self._create_infile()
64 rc, out, err = assert_python_ok('-m', 'json.tool', infile, outfile)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_tool.py 49 infile = test_support.TESTFN
50 with open(infile, "w") as fp:
51 self.addCleanup(os.remove, infile)
53 return infile
56 infile = self._create_infile()
57 rc, out, err = assert_python_ok('-m', 'json.tool', infile)
62 infile = self._create_infile()
64 rc, out, err = assert_python_ok('-m', 'json.tool', infile, outfile)
  /external/python/cpython2/Lib/plat-mac/
applesingle.py 107 def decode(infile, outpath, resonly=False, verbose=False):
108 """decode(infile, outpath [, resonly=False, verbose=False])
112 outpath containing only the resource fork from infile.
114 with the data and resource forks from infile. On platforms
119 if not hasattr(infile, 'read'):
120 if isinstance(infile, Carbon.File.Alias):
121 infile = infile.ResolveAlias()[0]
124 if isinstance(infile, (Carbon.File.FSSpec, Carbon.File.FSRef)):
125 infile = infile.as_pathname(
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
applesingle.py 107 def decode(infile, outpath, resonly=False, verbose=False):
108 """decode(infile, outpath [, resonly=False, verbose=False])
112 outpath containing only the resource fork from infile.
114 with the data and resource forks from infile. On platforms
119 if not hasattr(infile, 'read'):
120 if isinstance(infile, Carbon.File.Alias):
121 infile = infile.ResolveAlias()[0]
124 if isinstance(infile, (Carbon.File.FSSpec, Carbon.File.FSRef)):
125 infile = infile.as_pathname(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
applesingle.py 107 def decode(infile, outpath, resonly=False, verbose=False):
108 """decode(infile, outpath [, resonly=False, verbose=False])
112 outpath containing only the resource fork from infile.
114 with the data and resource forks from infile. On platforms
119 if not hasattr(infile, 'read'):
120 if isinstance(infile, Carbon.File.Alias):
121 infile = infile.ResolveAlias()[0]
124 if isinstance(infile, (Carbon.File.FSSpec, Carbon.File.FSRef)):
125 infile = infile.as_pathname(
    [all...]
  /external/python/cpython3/Programs/
_freeze_importlib.c 36 FILE *infile = NULL, *outfile = NULL; local
52 infile = fopen(inpath, "rb");
53 if (infile == NULL) {
57 if (_Py_fstat_noraise(fileno(infile), &status)) {
67 n = fread(text, 1, text_size, infile);
68 fclose(infile);
69 infile = NULL;
146 if (infile)
147 fclose(infile);

Completed in 373 milliseconds

1 2 3 4 5 6 7 8 91011>>