Home
last modified time | relevance | path

Searched refs:flag_file (Results 1 – 25 of 44) sorted by relevance

12

/dports/comms/mgetty+sendfax/mgetty-1.1.37/voice/vgetty/
H A Dmessage.c23 FILE *flag_file; in vgetty_message_light() local
29 flag_file = fopen(flag_file_name, "r"); in vgetty_message_light()
31 if (flag_file == NULL) in vgetty_message_light()
35 fclose(flag_file); in vgetty_message_light()
49 int flag_file; in vgetty_create_message_flag_file() local
55 flag_file = creat(flag_file_name, 0666); in vgetty_create_message_flag_file()
57 if (flag_file < 0) in vgetty_create_message_flag_file()
61 close(flag_file); in vgetty_create_message_flag_file()
H A Drings.c73 FILE *flag_file; in vgetty_rings() local
77 flag_file = fopen(flag_file_name, "r"); in vgetty_rings()
79 if (flag_file != NULL) in vgetty_rings()
82 fclose(flag_file); in vgetty_rings()
/dports/sysutils/cfengine-devel/core-d08ae9eff/contrib/masterfiles-stage/
H A Dgit-askpass.sh23 flag_file=/tmp/cfengine-vcs-askpass
24 if [ ! -f $flag_file ]
28 touch $flag_file
32 rm $flag_file
/dports/net/x11vnc/x11vnc-0.9.16/misc/
H A Dblockdpy.c160 char *flag_file = NULL; in main() local
184 flag_file = argv[++i]; in main()
185 unlink(flag_file); in main()
323 if (flag_file && stat(flag_file, &sbuf) == 0) { in main()
325 fprintf(stderr, "flag found: %s\n", flag_file); in main()
327 unlink(flag_file); in main()
/dports/lang/perl5.34/perl-5.34.0/t/comp/
H A Drequire.t139 my $flag_file = 'bleah.flg';
142 write_file($flag_file, 1);
143 print "not " unless -e $flag_file;
145 write_file('bleah.pm', "unlink '$flag_file' or die; \$a=0; \$b=1/\$a; 1;\n");
148 print "not " unless -e $flag_file xor $expected_compile;
164 write_file($flag_file, 1);
165 write_file('bleah.pm', "unlink '$flag_file'; 1");
170 print "not " unless -e $flag_file;
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/t/comp/
H A Drequire.t138 my $flag_file = 'bleah.flg';
141 write_file($flag_file, 1);
142 print "not " unless -e $flag_file;
144 write_file('bleah.pm', "unlink '$flag_file' or die; \$a=0; \$b=1/\$a; 1;\n");
147 print "not " unless -e $flag_file xor $expected_compile;
163 write_file($flag_file, 1);
164 write_file('bleah.pm', "unlink '$flag_file'; 1");
169 print "not " unless -e $flag_file;
/dports/lang/perl5.30/perl-5.30.3/t/comp/
H A Drequire.t139 my $flag_file = 'bleah.flg';
142 write_file($flag_file, 1);
143 print "not " unless -e $flag_file;
145 write_file('bleah.pm', "unlink '$flag_file' or die; \$a=0; \$b=1/\$a; 1;\n");
148 print "not " unless -e $flag_file xor $expected_compile;
164 write_file($flag_file, 1);
165 write_file('bleah.pm', "unlink '$flag_file'; 1");
170 print "not " unless -e $flag_file;
/dports/lang/perl5.32/perl-5.32.1/t/comp/
H A Drequire.t139 my $flag_file = 'bleah.flg';
142 write_file($flag_file, 1);
143 print "not " unless -e $flag_file;
145 write_file('bleah.pm', "unlink '$flag_file' or die; \$a=0; \$b=1/\$a; 1;\n");
148 print "not " unless -e $flag_file xor $expected_compile;
164 write_file($flag_file, 1);
165 write_file('bleah.pm', "unlink '$flag_file'; 1");
170 print "not " unless -e $flag_file;
/dports/www/firefox-legacy/firefox-52.8.0esr/media/libyuv/
H A Dsync_chromium.py72 flag_file = os.path.join(opts.chromium_dir, '.last_sync_chromium')
79 os.path.exists(flag_file)):
80 with open(flag_file, 'r') as f:
84 os.unlink(flag_file)
147 with open(flag_file, 'wb') as f:
/dports/www/chromium-legacy/chromium-88.0.4324.182/base/test/launcher/
H A Dunit_test_launcher.cc320 const base::FilePath& flag_file) { in GetCommandLineForChildGTestProcess() argument
323 CHECK(base::PathExists(flag_file)); in GetCommandLineForChildGTestProcess()
327 CHECK(WriteFile(flag_file, long_flags)); in GetCommandLineForChildGTestProcess()
330 new_cmd_line.AppendSwitchPath(kGTestFlagfileFlag, flag_file); in GetCommandLineForChildGTestProcess()
367 FilePath flag_file; in GetCommandLine() local
368 platform_delegate_->CreateTemporaryFile(temp_dir, &flag_file); in GetCommandLine()
371 test_names, *output_file, flag_file)); in GetCommandLine()
H A Dunit_test_launcher.h82 const base::FilePath& flag_file) = 0;
114 const base::FilePath& flag_file) override;
/dports/multimedia/mswebrtc/mswebrtc-1.1.1/webrtc/
H A Dsync_chromium.py93 flag_file = os.path.join(opts.chromium_dir, '.last_sync_chromium')
100 os.path.exists(flag_file)):
101 with open(flag_file, 'r') as f:
105 os.unlink(flag_file)
188 with open(flag_file, 'wb') as f:
/dports/x11-wm/lxqt-panel/lxqt-panel-1.0.0/plugin-kbindicator/src/
H A Dcontent.cpp89 QString flag_file; in layoutChanged() local
91 flag_file = m_layoutFlagPattern.arg(sym); in layoutChanged()
92 if (flag_file.isEmpty() || !QFileInfo::exists(flag_file)) in layoutChanged()
98 m_layout->setIcon(QIcon{flag_file}); in layoutChanged()
/dports/devel/p5-Log-Any-App/Log-Any-App-0.540/t/
H A D01-basics.t141 my $flag_file = "$tempdir/prog.$test->{ext}";
142 write_text($flag_file, defined($test->{content}) ? $test->{content} : "");
144 name => "setting output level via level flag file: $flag_file",
150 unlink $flag_file or die "Can't unlink flag file $flag_file: $!";
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/tools/clusterfuzz/js_fuzzer/tools/
H A Drun_one.py49 def run(fuzz_file, flag_file): argument
51 with open(flag_file) as f:
78 for fuzz_file, flag_file in list_tests():
79 cmd, output = run(fuzz_file, flag_file)
/dports/devel/py-nose/nose-1.3.7/functional_tests/doc_tests/test_multiprocess/support/
H A Dtest_shared.py22 flag_file = open(flag, 'r')
24 lines = [line for line in flag_file]
26 flag_file.close()
/dports/lang/v8/v8-9.6.180.12/tools/clusterfuzz/js_fuzzer/tools/
H A Drun_one.py51 def run(fuzz_file, flag_file): argument
53 with open(flag_file) as f:
80 for fuzz_file, flag_file in list_tests():
81 cmd, output = run(fuzz_file, flag_file)
/dports/lang/ruby26/ruby-2.6.9/test/rdoc/
H A Dtest_rdoc_rdoc.rb142 flag_file = @rdoc.output_flag_file dir
144 FileUtils.touch flag_file
146 @rdoc.normalized_file_list [test_path, flag_file]
559 flag_file = @rdoc.output_flag_file "doc"
561 FileUtils.touch flag_file
/dports/security/py-pyspnego/pyspnego-0.3.1/
H A Dsetup.py87 with open(SKIP_CYTHON_FILE, mode="wb") as flag_file:
88 flag_file.write(b"")
/dports/lang/ruby26/ruby-2.6.9/lib/rdoc/
H A Drdoc.rb175 flag_file = output_flag_file dir
185 File.open flag_file do |io|
209 FileUtils.touch flag_file
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/tools/blinkpy/web_tests/
H A Dtry_flag_unittest.py35 flag_file = finder.path_from_web_tests(
45 expected_added_paths = {flag_file}
/dports/www/chromium-legacy/chromium-88.0.4324.182/build/android/gyp/
H A Ddex.py175 with tempfile.NamedTemporaryFile() as flag_file:
179 flag_file.write('\n'.join(dex_cmd[MAX_ARGS:]))
180 flag_file.flush()
182 dex_cmd.append('@' + flag_file.name)
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/build/android/gyp/
H A Ddex.py175 with tempfile.NamedTemporaryFile() as flag_file:
179 flag_file.write('\n'.join(dex_cmd[MAX_ARGS:]))
180 flag_file.flush()
182 dex_cmd.append('@' + flag_file.name)
/dports/audio/festival/festival/examples/
H A Dbenchmark52 echo -n > $flag_file;
/dports/lang/v8/v8-9.6.180.12/build/android/gyp/
H A Ddex.py210 with tempfile.NamedTemporaryFile(mode='w') as flag_file:
214 flag_file.write('\n'.join(dex_cmd[MAX_ARGS:]))
215 flag_file.flush()
217 dex_cmd.append('@' + flag_file.name)

12