/external/chromium-trace/catapult/systrace/systrace/tracing_agents/ |
D | atrace_from_file_agent.py | 27 if options.from_file is not None: 28 with open(options.from_file, 'rb') as f_in: 30 if convert_perfetto_trace(options.from_file): 31 options.from_file = T2T_OUTPUT 33 print ('Perfetto trace file: ' + options.from_file + 53 def is_perfetto(from_file): argument 55 if ord(from_file.read(1)) != 0x0a: 62 c = ord(from_file.read(1)) 68 from_file.seek(field_size, os.SEEK_CUR) 70 if ord(from_file.read(1)) != 0x0a: [all …]
|
D | atrace_agent.py | 93 if config.from_file is not None: 428 app_name, compress_trace_data, from_file, argument 439 self.from_file = from_file 471 options.from_file, options.device_serial_number,
|
D | android_process_data_agent.py | 33 if config.from_file is not None:
|
D | atrace_process_dump.py | 115 can_enable = (options.target == 'android') and (not options.from_file)
|
/external/crosvm/sys_util/src/ |
D | file_flags.rs | 19 pub fn from_file(file: &dyn AsRawFd) -> Result<FileFlags> { in from_file() method 44 assert_eq!(FileFlags::from_file(&read_pipe).unwrap(), FileFlags::Read); in pipe_pair() 45 assert_eq!(FileFlags::from_file(&write_pipe).unwrap(), FileFlags::Write); in pipe_pair() 51 assert_eq!(FileFlags::from_file(&evt).unwrap(), FileFlags::ReadWrite); in eventfd()
|
/external/python/cpython2/Demo/tix/samples/ |
D | OptMenu.py | 29 from_file = Tix.OptionMenu(top, label="From File Format : ", 44 from_file.add_command(opt, label=options[opt]) 50 from_file.pack(side=Tix.TOP, anchor=Tix.W, pady=3, padx=6)
|
/external/chromium-trace/catapult/systrace/systrace/ |
D | run_systrace.py | 85 if options.from_file is not None: 86 base = os.path.splitext(options.from_file)[0] 159 if options.target == 'android' and not options.from_file: 189 if options.from_file is not None:
|
/external/selinux/python/sepolgen/tests/ |
D | test_objectmodel.py | 27 info.from_file(fd)
|
D | test_interfaces.py | 270 i2.from_file(f)
|
/external/autotest/client/cros/chameleon/ |
D | edid.py | 83 def from_file(cls, filename, skip_verify=False): member in Edid
|
D | chameleon.py | 695 self.set_edid(edid_lib.Edid.from_file(filename), 769 return self.use_edid(edid_lib.Edid.from_file(filename),
|
/external/grpc-grpc/src/compiler/ |
D | node_generator.cc | 86 grpc::string GetRelativePath(const grpc::string& from_file, in GetRelativePath() argument 88 return GetRootPath(from_file, to_file) + to_file; in GetRelativePath()
|
/external/selinux/python/sepolgen/src/sepolgen/ |
D | objectmodel.py | 105 def from_file(self, fd): member in PermMappings
|
D | interfaces.py | 213 def from_file(self, fd): member in AttributeSet 349 def from_file(self, fd): member in InterfaceSet
|
/external/autotest/server/site_tests/display_EdidStress/ |
D | display_EdidStress.py | 73 edid.Edid.from_file(filepath, skip_verify=True)):
|
/external/autotest/database/ |
D | migrate.py | 34 def from_file(cls, filename): member in Migration 206 migrations = [Migration.from_file(filename)
|
/external/selinux/python/audit2allow/ |
D | sepolgen-ifgen | 106 attrs.from_file(outfile)
|
D | audit2allow | 198 ifs.from_file(fd) 213 perm_maps.from_file(fd)
|
D | audit2why | 198 ifs.from_file(fd) 213 perm_maps.from_file(fd)
|
/external/autotest/server/site_tests/audio_AudioNodeSwitch/ |
D | audio_AudioNodeSwitch.py | 112 hdmi_port.apply_edid(edid_lib.Edid.from_file(edid_path))
|
/external/python/cpython3/Lib/xml/etree/ |
D | ElementTree.py | 1718 def canonicalize(xml_data=None, *, out=None, from_file=None, **options): argument 1731 if xml_data is None and from_file is None: 1742 elif from_file is not None: 1743 parse(from_file, parser=parser)
|
/external/autotest/server/site_tests/video_PlaybackQuality/ |
D | video_PlaybackQuality.py | 356 edid.Edid.from_file(edid_path, skip_verify=True)):
|
/external/iproute2/lib/ |
D | bpf.c | 216 static int bpf_parse_string(char *arg, bool from_file, __u16 *bpf_len, in bpf_parse_string() argument 222 if (from_file) { in bpf_parse_string() 288 bool from_file) in bpf_ops_parse() argument 297 if (bpf_parse_string(argv[0], from_file, &bpf_len, &bpf_string, in bpf_ops_parse()
|
/external/crosvm/devices/src/virtio/ |
D | wl.rs | 820 fn from_file(vm: VmRequester, mut fd: File) -> WlResult<WlVfd> { in from_file() method 845 let flags = match FileFlags::from_file(&fd) { in from_file() 1335 let vfd = WlVfd::from_file(self.vm.clone(), file)?; in recv()
|
/external/python/cpython3/Lib/test/ |
D | test_zipfile.py | 2556 zi = zipfile.ZipInfo.from_file(__file__) 2562 zi = zipfile.ZipInfo.from_file(pathlib.Path(__file__)) 2568 zi = zipfile.ZipInfo.from_file(os.fsencode(__file__), 'test') 2575 zi = zipfile.ZipInfo.from_file(f.fileno(), 'test') 2582 zi = zipfile.ZipInfo.from_file(dirpath, 'stdlib_tests')
|