Home
last modified time | relevance | path

Searched refs:file (Results 1 – 7 of 7) sorted by relevance

/edtt-latest/src/components/
Dbtsnoop.py64 self.file = None
71 self.file = open(btsnoop_file_name, "wb")
88 self.file.write(header)
92 if self.file:
93 self.file.close()
123 self.file.write(pkt_hdr)
130 if self.file:
143 self.file.write(packet[8:10])
145 self.file.write(data)
153 if self.file:
[all …]
Dbsim_lib.py84 with open(filename, "r") as file:
85 line = file.readline()
90 with open(lock_path, "w") as file:
91 file.write(str(pid) + "\n")
94 file.write(str(starttime) + "\n")
108 with open(lock_path, "r") as file:
110 his_pid = int(file.readline())
115 his_starttime = int(file.readline())
Ddump.py534 def __init__(self, file): argument
535 self.file = file
536 self.generator = self.file.fetch()
544 dump.file.close()
546 def __open(self, file): argument
548 file.open()
549 self.dumps.append(self.Dump(file))
551 print('{} so such file'.format(file))
/edtt-latest/docs/
DLICENSE106 (d) If the Work includes a "NOTICE" text file as part of its
109 within such NOTICE file, excluding those notices that do not
111 of the following places: within a NOTICE text file distributed
116 of the NOTICE file are for informational purposes only and
141 origin of the Work and reproducing the content of the NOTICE file.
184 comment syntax for the file format. We also recommend that a
185 file or class name and description of purpose be included on the
192 you may not use this file except in compliance with the License.
DREADME.md64 indicated in the file; or
72 in the file; or
DEDTT_framework_Babblesim.md229 The `<test>` argument is the name of the Python file (without .py) holding the code for the test to…
/edtt-latest/src/
Dedttool.py123 file = open(t, "r");
124 lines = file.readlines();
143 file.close();