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

1 2

  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
ml_load_dmp.h 29 void read_dmp_img(char *dmp_path, char *out_file);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
uu.py 29 encode(in_file, out_file [,name, mode])
30 decode(in_file [, out_file, mode])
42 def encode(in_file, out_file, name=None, mode=None):
62 # Open out_file if it is a pathname
64 if out_file == '-':
65 out_file = sys.stdout
66 elif isinstance(out_file, basestring):
67 out_file = open(out_file, 'wb')
68 opened_files.append(out_file)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
uu.py 29 encode(in_file, out_file [,name, mode])
30 decode(in_file [, out_file, mode])
42 def encode(in_file, out_file, name=None, mode=None):
62 # Open out_file if it is a pathname
64 if out_file == '-':
65 out_file = sys.stdout
66 elif isinstance(out_file, basestring):
67 out_file = open(out_file, 'wb')
68 opened_files.append(out_file)
    [all...]
  /external/chromium_org/chrome/installer/mini_installer/
pe_resource.cc 36 HANDLE out_file = ::CreateFile(full_path, GENERIC_WRITE, 0, NULL, local
38 if (INVALID_HANDLE_VALUE == out_file) {
42 if (!::WriteFile(out_file, data, static_cast<DWORD>(resource_size),
44 ::CloseHandle(out_file);
47 return ::CloseHandle(out_file) ? true : false;
  /external/chromium_org/third_party/jstemplate/
compile.py 36 out_file = file(out, 'w')
37 out_file.write(output_wrapper % response.read())
38 out_file.close()
  /external/chromium_org/native_client_sdk/src/build_tools/
build_updater.py 68 for in_file, out_file in UPDATER_FILES:
71 out_file = os.path.join(out_dir, out_file)
72 result.append((in_file, out_file))
90 for in_file_glob, out_file in files:
91 if out_file.endswith('/'):
94 os.path.join(out_file, os.path.basename(in_file))))
96 result.append((in_file_glob, out_file))
106 for in_file, out_file in files:
107 buildbot_common.MakeDir(os.path.dirname(out_file))
    [all...]
  /external/chromium_org/chrome/installer/mac/
make_signers.sh 54 out_file="${packaging_dir}/$(basename "${in_file:0:${#in_file} - 3}")"
59 > "${out_file}"
61 if [[ "${out_file: -3}" = ".sh" ]]; then
62 chmod +x "${out_file}"
  /external/e2fsprogs/debugfs/
logdump.c 79 FILE *out_file; local
170 out_file = stdout;
173 out_file = fopen(out_fn, "w");
174 if (!out_file) {
247 fprintf(out_file, "Using external journal found at %s\n",
254 dump_journal(argv[0], out_file, &journal_source);
262 if (out_file && (out_file != stdout))
263 fclose(out_file);
331 static void dump_journal(char *cmdname, FILE *out_file,
    [all...]
  /external/libvpx/libvpx/build/make/
version.sh 23 out_file=${2}
71 if [ -n "$out_file" ]; then
72 diff $$.tmp ${out_file} >/dev/null 2>&1 || cat $$.tmp > ${out_file}
  /external/chromium_org/build/
escape_unicode.py 45 with codecs.open(out_filename, 'w', 'ascii') as out_file:
48 out_file.write(repr(char.encode('utf8'))[1:-1])
50 out_file.write('""')
52 out_file.write(char.encode('ascii'))
  /hardware/invensense/65xx/libsensors_iio/
MPLSupport.h 32 void dump_dmp_img(const char *out_file);
  /build/tools/releasetools/
build_image.py 41 def BuildImage(in_dir, prop_dict, out_file):
42 """Build an image to out_file from in_dir with property prop_dict.
47 out_file: path of the output image file.
60 build_command.extend([in_dir, out_file, fs_type,
71 build_command.append(out_file)
83 os.path.dirname(out_file), "unsparse_" + os.path.basename(out_file))
84 inflate_command = ["simg2img", out_file, unsparse_image]
159 out_file = argv[2]
162 image_filename = os.path.basename(out_file)
    [all...]
  /external/chromium_org/chrome/app/
client_util.h 62 HMODULE Load(string16* out_version, string16* out_file);
client_util.cc 119 HMODULE MainDllLoader::Load(string16* out_version, string16* out_file) {
122 *out_file = dir;
123 HMODULE dll = LoadChromeWithDirectory(out_file);
148 *out_file = dir;
150 out_file->append(*out_version).append(1, L'\\');
151 dll = LoadChromeWithDirectory(out_file);
153 PLOG(ERROR) << "Failed to load Chrome DLL from " << *out_file;
  /external/wpa_supplicant_8/src/utils/
wpa_debug.c 61 static FILE *out_file = NULL; variable
75 if (out_file) {
76 fprintf(out_file, "%ld.%06u: ", (long) tv.sec,
221 if (out_file) {
222 vfprintf(out_file, fmt, ap);
223 fprintf(out_file, "\n");
348 if (out_file) {
349 fprintf(out_file, "%s - hexdump(len=%lu):",
352 fprintf(out_file, " [NULL]");
355 fprintf(out_file, " %02x", buf[i])
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/
filemediaengine.cc 83 const std::string& out_file);
121 const std::string& out_file)
136 talk_base::Pathname(out_file), "wb"));
210 const std::string& out_file)
211 : rtp_sender_receiver_(new RtpSenderReceiver(this, in_file, out_file)) {
233 const std::string& out_file)
234 : rtp_sender_receiver_(new RtpSenderReceiver(this, in_file, out_file)) {
  /external/chromium_org/chrome/tools/build/
version.py 130 out_file = None variable
149 out_file = a variable
155 while len(args) and (in_file is None or out_file is None or
159 elif out_file is None:
160 out_file = args.pop(0) variable
188 if out_file:
189 write_if_changed(out_file, contents)
  /external/chromium_org/tools/site_compare/
site_compare.py 124 out_file = open(os.path.join(out_path, "log.txt"), "w")
127 out_file.write(description_string)
134 out_file.write("%s: " % filename)
137 out_file.write("Does not exist in target directory\n")
152 out_file.write("OK\n")
155 out_file.write("%s\n" % (ret[0]))
158 out_file.close()
  /cts/tools/vm-tests-tf/src/util/build/
DasmBuildStep.java 104 File out_file = null; local
107 out_file = new File(class_name + ".dex");
109 out_file = new File(dest_dir, class_name + ".dex");
127 outp = new FileOutputStream(out_file);
133 " while writing " + out_file.getPath());
137 out_file.delete();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_text_file.py 56 out_file = open(filename, "w")
58 out_file.write(TEST_DATA)
60 out_file.close()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_text_file.py 56 out_file = open(filename, "w")
58 out_file.write(TEST_DATA)
60 out_file.close()
  /external/chromium_org/chrome/tools/convert_dict/
convert_dict.cc 139 FILE* out_file = file_util::OpenFile(out_path, "wb"); local
140 if (!out_file) {
144 size_t written = fwrite(&serialized[0], 1, serialized.size(), out_file);
146 file_util::CloseFile(out_file);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
export-w3c-performance-wg-tests 75 with open(os.path.join(destination_directory, root, filename), 'w') as out_file:
79 out_file.write(line)
import-w3c-performance-wg-tests 81 with open(os.path.join(destination_directory, root, filename), 'w') as out_file:
87 out_file.write(line)
  /cts/tools/dasm/src/dasm/
Main.java 126 File out_file = null; local
130 out_file = new File(class_name + ".dex");
133 out_file = new File(dest_dir, class_name + ".dex");
153 outp = new FileOutputStream(out_file);
159 + e.getMessage() + " while writing " + out_file.getPath());
165 out_file.delete();
173 System.out.println("Generated: " + out_file.getPath());

Completed in 2176 milliseconds

1 2