HomeSort by relevance Sort by last modified time
    Searched refs:to_file (Results 1 - 20 of 20) sorted by null

  /device/google/marlin/dataservices/datatop/src/
datatop_fileops.h 45 int dtop_open_writing_file(char *fw, FILE **to_file);
datatop_fileops.c 120 * @param to_file Pointer to the *file that is opened.
124 int dtop_open_writing_file(char *fw, FILE **to_file)
126 *to_file = fopen(fw, "w");
127 if (*to_file) {
datatop.c 222 FILE *to_file = NULL; local
224 &to_file)) == VALID) {
227 if (dtop_poll_periodically(first_dpg_list, to_file)
231 dtop_close_file(to_file);
236 dtop_close_file(to_file);
  /external/python/cpython2/Demo/tix/samples/
OptMenu.py 33 to_file = Tix.OptionMenu(top, label="To File Format : ",
45 to_file.add_command(opt, label=options[opt])
51 to_file.pack(side=Tix.TOP, anchor=Tix.W, pady=3, padx=6)
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/codegen/
gen_knobs.py 44 MakoTemplateWriter.to_file(
52 MakoTemplateWriter.to_file(
gen_backends.py 110 MakoTemplateWriter.to_file(
121 MakoTemplateWriter.to_file(
134 MakoTemplateWriter.to_file(
gen_archrast.py 157 MakoTemplateWriter.to_file(template_file, output_fullpath,
168 MakoTemplateWriter.to_file(template_file, output_fullpath,
179 MakoTemplateWriter.to_file(template_file, output_fullpath,
191 MakoTemplateWriter.to_file(template_file, output_fullpath,
gen_llvm_ir_macros.py 204 MakoTemplateWriter.to_file(
231 MakoTemplateWriter.to_file(
gen_common.py 62 def to_file(template_filename, output_filename, **kwargs): member in class:MakoTemplateWriter
gen_llvm_types.py 311 MakoTemplateWriter.to_file(
  /external/tensorflow/tensorflow/python/keras/utils/
vis_utils.py 149 to_file='model.png',
157 to_file: File name of the plot image.
172 _, extension = os.path.splitext(to_file)
178 dot.write(to_file, format=extension)
184 return display.Image(filename=to_file)
  /external/autotest/client/cros/chameleon/
edid.py 102 def to_file(self, filename): member in class:Edid
  /external/toolchain-utils/cros_utils/
manifest_versions.py 139 def GetManifest(self, version, to_file):
149 command = 'cp {0} {1}'.format(files[0], to_file)
152 raise RuntimeError('Cannot copy manifest to {0}'.format(to_file))
  /external/grpc-grpc/src/compiler/
node_generator.cc 84 // Return the relative path to load to_file from the directory containing
87 const grpc::string& to_file) {
88 return GetRootPath(from_file, to_file) + to_file;
  /external/toolchain-utils/
remote_gcc_build.py 217 to_file = os.path.join(temp_dir, 'default.xml')
218 manifests.GetManifest(version, to_file)
219 return UploadManifest(to_file, chromeos_root, branch)
  /external/selinux/python/audit2allow/
sepolgen-ifgen 145 if_set.to_file(f)
  /external/selinux/python/sepolgen/tests/
test_interfaces.py 265 i.to_file(f)
  /art/compiler/utils/
assembler_test_base.h 210 // Compile the assembly file from_file to a binary file to_file. Returns true on success.
211 bool Assemble(const char* from_file, const char* to_file, std::string* error_msg) {
225 args.push_back(to_file);
  /external/clang/tools/c-index-test/
c-index-test.c 178 FILE *to_file; local
190 to_file = fopen(sep + 1, "rb");
191 if (!to_file) {
201 fseek(to_file, 0, SEEK_END);
202 unsaved->Length = ftell(to_file);
203 fseek(to_file, 0, SEEK_SET);
207 if (fread(contents, 1, unsaved->Length, to_file) != unsaved->Length) {
209 (feof(to_file) ? "EOF" : "error"), sep + 1);
210 fclose(to_file);
221 fclose(to_file);
    [all...]
  /external/selinux/python/sepolgen/src/sepolgen/
interfaces.py 338 def to_file(self, fd): member in class:InterfaceSet

Completed in 578 milliseconds