Home
last modified time | relevance | path

Searched refs:dumpfile (Results 1 – 14 of 14) sorted by relevance

/external/iptables/iptables/tests/shell/testcases/ipt-restore/
D0004-restore-race_06 dumpfile=""
21 [ -n "${dumpfile}" ] && rm -f "${dumpfile}"
74 dumpfile=$(mktemp) || exit 1
76 (make_dummy_rules; make_dummy_rules security) > $dumpfile
77 $XT_MULTI iptables-restore -w < $dumpfile
78 LINES1=$(wc -l < $dumpfile)
79 $XT_MULTI iptables-save | grep -v '^#' > $dumpfile
80 LINES2=$(wc -l < $dumpfile)
103 $XT_MULTI iptables-restore -w 15 < $dumpfile &
114 cmp $tmpfile $dumpfile
D0001load-specific-table_023 dumpfile="$(dirname "${0}")/dumps/${iptables}.dump"
25 "$XT_MULTI" "${iptables}-restore" --table="${table}" "${dumpfile}"; rv=$?
/external/iptables/iptables/tests/shell/testcases/ipt-save/
D0002load-fedora27-firewalld_034 dumpfile="$2"
37 $XT_MULTI ${iptables}-restore $opt < "$dumpfile"
39 echo "$XT_MULTI ${iptables}-restore $opt $dumpfile failed" 1>&2
49 do_diff $dumpfile "$tmpfile"
D0001load-dumps_038 dumpfile="$2"
40 $XT_MULTI ${iptables}-restore < "$dumpfile"
42 do_diff $dumpfile "$tmpfile"
/external/python/cpython2/Tools/webchecker/
Dwebchecker.py150 dumpfile = DUMPFILE
170 dumpfile = a
192 c = load_pickle(dumpfile=dumpfile, verbose=verbose)
234 if c.save_pickle(dumpfile):
235 if dumpfile == DUMPFILE:
239 dumpfile)
242 def load_pickle(dumpfile=DUMPFILE, verbose=VERBOSE): argument
244 print "Loading checkpoint from %s ..." % dumpfile
245 f = open(dumpfile, "rb")
641 def save_pickle(self, dumpfile=DUMPFILE): argument
[all …]
/external/blktrace/iowatcher/
Dblkparse.c782 static int dump_traces(struct tracelist *traces, int count, char *dumpfile) in dump_traces() argument
800 argv[i++] = dumpfile; in dump_traces()
819 char *dumpfile; in find_trace_file() local
847 ret = asprintf(&dumpfile, "%s.dump", filename); in find_trace_file()
852 ret = stat(dumpfile, &st); in find_trace_file()
854 return dumpfile; in find_trace_file()
864 ret = dump_traces(traces, count, dumpfile); in find_trace_file()
867 return dumpfile; in find_trace_file()
870 free(dumpfile); in find_trace_file()
885 ret = asprintf(&dumpfile, "%*s.dump", len, filename); in find_trace_file()
[all …]
/external/openssh/regress/misc/kexfuzz/
Dkexfuzz.c51 FILE *dumpfile; in packet_hook() local
75 if ((dumpfile = fopen(ctx->dump_path, "w+")) == NULL) in packet_hook()
78 if (fwrite(typep, 1, 1, dumpfile) != 1) in packet_hook()
82 1, dumpfile) != 1) in packet_hook()
88 fclose(dumpfile); in packet_hook()
/external/autotest/site_utils/
Ddump_to_cloudsql.py196 def dump_to_cloudsql(dumpfile, manager, cmd_offset=0): argument
206 total = os.path.getsize(dumpfile)
209 with open(dumpfile, 'r') as dump:
/external/autotest/client/cros/
Dp2p_utils.py103 dumpfile = os.path.join(dumpdir, 'dump-%s.pcap' % self.tap.name)
104 self._tcpdump = tcpdump.Tcpdump(self.tap.name, dumpfile)
/external/llvm-project/llvm/test/Transforms/GVN/
D2007-07-26-PhiErasure.ll10 define i32 @reload(%struct.rtx_def* %first, i32 %global, %struct.FILE* %dumpfile) {
30 ; CHECK: define i32 @reload(%struct.rtx_def* %first, i32 %global, %struct.FILE* %dumpfile) {
/external/llvm/test/Transforms/GVN/
D2007-07-26-PhiErasure.ll10 define i32 @reload(%struct.rtx_def* %first, i32 %global, %struct.FILE* %dumpfile) {
/external/llvm-project/llvm/test/Transforms/NewGVN/
D2007-07-26-PhiErasure.ll12 define i32 @reload(%struct.rtx_def* %first, i32 %global, %struct.FILE* %dumpfile) {
/external/curl/tests/server/
Dsws.c794 const char *dumpfile = is_proxy?REQUEST_PROXY_DUMP:REQUEST_DUMP; in storerequest() local
802 dump = fopen(dumpfile, "ab"); in storerequest()
806 dumpfile, error, strerror(error)); in storerequest()
822 logmsg("Wrote request (%zu bytes) input to %s", totalsize, dumpfile); in storerequest()
825 dumpfile, error, strerror(error)); in storerequest()
827 totalsize-writeleft, totalsize, dumpfile); in storerequest()
837 dumpfile, error, strerror(error)); in storerequest()
/external/google-breakpad/src/client/linux/minidump_writer/
Dminidump_writer_unittest.cc472 string dumpfile = temp_dir.path() + kMDWriterUnitTestFileName; in TEST() local
489 ASSERT_TRUE(WriteMinidump(dumpfile.c_str(), child, &context, sizeof(context), in TEST()
495 Minidump minidump(dumpfile); in TEST()