Home
last modified time | relevance | path

Searched refs:opened_file (Results 1 – 25 of 65) sorted by relevance

123

/dports/databases/pear-MDB/MDB-1.3.0/MDB/Modules/
H A DLOB.php137 var $opened_file = 0; variable in MDB_LOB_Input_File
157 $this->opened_file = 1;
169 if($this->opened_file) {
172 $this->opened_file = 0;
194 var $opened_file = 0; variable in MDB_LOB_Output_File
223 $this->opened_file = 1;
271 if($this->opened_file) {
273 $this->opened_file = 0;
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/sandbox/linux/syscall_broker/
H A Dbroker_host.cc99 int* opened_file) { in OpenFileForIPC() argument
119 *opened_file = opened_fd; in OpenFileForIPC()
253 int* opened_file) { in HandleRemoteCommand() argument
287 flags, reply, opened_file); in HandleRemoteCommand()
382 int opened_file = -1; in HandleRequest() local
385 &message, &reply, &opened_file); in HandleRequest()
387 ssize_t sent = reply.SendMsg(temporary_ipc.get(), opened_file); in HandleRequest()
391 if (opened_file >= 0) { in HandleRequest()
392 int ret = IGNORE_EINTR(close(opened_file)); in HandleRequest()
/dports/www/chromium-legacy/chromium-88.0.4324.182/sandbox/linux/syscall_broker/
H A Dbroker_host.cc99 base::ScopedFD* opened_file) { in OpenFileForIPC() argument
110 opened_file->reset(sys_open(file_to_open, flags)); in OpenFileForIPC()
111 if (!opened_file->is_valid()) { in OpenFileForIPC()
245 base::ScopedFD* opened_file) { in HandleRemoteCommand() argument
279 flags, reply, opened_file); in HandleRemoteCommand()
375 base::ScopedFD opened_file; in LoopAndHandleRequests() local
377 &message, &reply, &opened_file)) { in LoopAndHandleRequests()
383 ssize_t sent = reply.SendMsg(temporary_ipc.get(), opened_file.get()); in LoopAndHandleRequests()
/dports/www/py-django-post_office/django-post_office-3.5.3/post_office/
H A Dutils.py84 opened_file = None
88 opened_file = open(content, 'rb')
89 content = File(opened_file)
100 if opened_file is not None:
101 opened_file.close()
/dports/graphics/akira/Akira-0.0.16/src/FileFormat/
H A DZipArchiveHandler.vala31 public File opened_file { get; construct set; }
42 Object (opened_file: gzipped_file.dup ());
48 var parent_folder = opened_file.get_parent ().get_path ();
50 Path.build_filename (parent_folder, UNARCHIVED_PREFIX + opened_file.get_basename ()));
119 var parent_folder = opened_file.get_parent ();
121 make_file (opened_file);
136 extract (opened_file, unarchived_location);
147 var tmp_file = File.new_for_path (opened_file.get_path () + ".tmp");
150 if (opened_file.query_exists ()) {
151 opened_file.delete ();
[all …]
H A DAkiraFile.vala34 return opened_file.get_parent ().get_path () + "/" + opened_file.get_basename ();
39 Object (opened_file: _gzipped_file.dup (), window: window);
/dports/ftp/vsftpd-ext/vsFTPd-3.0.3-ext.1/
H A Dhttp.c266 int opened_file; in http_request_resource_type() local
267 opened_file = str_open(&p_sess->http_get_arg, kVSFSysStrOpenReadOnly); in http_request_resource_type()
268 if (vsf_sysutil_retval_is_error(opened_file)) in http_request_resource_type()
272 vsf_sysutil_close(opened_file); in http_request_resource_type()
H A Dpostlogin.c698 int opened_file; in handle_retr() local
721 opened_file = str_open(&p_sess->ftp_arg_str, kVSFSysStrOpenReadOnly); in handle_retr()
722 if (vsf_sysutil_retval_is_error(opened_file)) in handle_retr()
730 vsf_sysutil_lock_file_read(opened_file); in handle_retr()
732 vsf_sysutil_fstat(opened_file, &s_p_statbuf); in handle_retr()
751 vsf_sysutil_deactivate_noblock(opened_file); in handle_retr()
762 vsf_sysutil_lseek_to(opened_file, offset); in handle_retr()
794 opened_file, 0, is_ascii); in handle_retr()
835 vsf_sysutil_close(opened_file); in handle_retr()
/dports/devel/efl/efl-1.25.1/src/tests/eio/
H A Deio_test_file.c293 Eina_Bool opened_file; in EFL_START_TEST() local
304 opened_file = EINA_FALSE; in EFL_START_TEST()
305 eio_file_open(nested_filename, EINA_FALSE, _open_done_cb, _error_cb, &opened_file); in EFL_START_TEST()
307 fail_if(!opened_file); in EFL_START_TEST()
H A Deio_test_manager.c292 Eina_Bool opened_file = EINA_FALSE; in EFL_START_TEST() local
305 eina_future_then(f, _open_done_cb, &opened_file, NULL); in EFL_START_TEST()
308 fail_if(!opened_file); in EFL_START_TEST()
/dports/games/stonesoup/crawl-0.27.1/crawl-ref/source/
H A Dtags.h117 : _file(input), _chunk(0), opened_file(false), _pbuf(0), in _file()
121 : _file(0), _chunk(0), opened_file(false), _pbuf(&input),
144 bool opened_file; variable
/dports/textproc/py-pyexcel-ezodf/pyexcel-ezodf-0.3.4/
H A Dsetup.py138 with codecs.open(afile, 'r', 'utf-8') as opened_file:
139 content = filter_out_test_code(opened_file)
/dports/devel/dev86/dev86-0.16.20/as/
H A Das.c163 int opened_file = 0; local
303 opened_file = 1;
307 if( !opened_file )
/dports/textproc/py-pyexcel-xlsx/pyexcel-xlsx-0.6.0/
H A Dsetup.py154 with codecs.open(the_relative_file, "r", "utf-8") as opened_file:
155 content = filter_out_test_code(opened_file)
/dports/textproc/py-pyexcel/pyexcel-0.6.7/
H A Dsetup.py168 with codecs.open(the_relative_file, "r", "utf-8") as opened_file:
169 content = filter_out_test_code(opened_file)
/dports/textproc/py-pyexcel-ods3/pyexcel-ods3-0.6.0/
H A Dsetup.py155 with codecs.open(the_relative_file, "r", "utf-8") as opened_file:
156 content = filter_out_test_code(opened_file)
/dports/textproc/py-pyexcel-xls/pyexcel-xls-0.7.0/
H A Dsetup.py160 with codecs.open(the_relative_file, "r", "utf-8") as opened_file:
161 content = filter_out_test_code(opened_file)
/dports/textproc/py-pyexcel-io/pyexcel-io-0.6.5/
H A Dsetup.py166 with codecs.open(the_relative_file, "r", "utf-8") as opened_file:
167 content = filter_out_test_code(opened_file)
/dports/devel/py-lml/lml-0.1.0/
H A Dsetup.py150 with codecs.open(the_relative_file, "r", "utf-8") as opened_file:
151 content = filter_out_test_code(opened_file)
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/chromeos/extensions/file_system_provider/
H A Dfile_system_provider_api.cc99 for (const auto& opened_file : opened_files) { in FillFileSystemInfo() local
101 opened_file_item.open_request_id = opened_file.first; in FillFileSystemInfo()
102 opened_file_item.file_path = opened_file.second.file_path.value(); in FillFileSystemInfo()
103 switch (opened_file.second.mode) { in FillFileSystemInfo()
/dports/games/flare-engine/flare-engine-1.12/src/
H A DInputState.cpp108 bool opened_file = false; in loadKeyBindings() local
114 opened_file = true; in loadKeyBindings()
117 opened_file = true; in loadKeyBindings()
123 opened_file = true; in loadKeyBindings()
133 if (!opened_file) { in loadKeyBindings()
/dports/ftp/vsftpd/vsftpd-3.0.5/
H A Dpostlogin.c656 int opened_file; in handle_retr() local
679 opened_file = str_open(&p_sess->ftp_arg_str, kVSFSysStrOpenReadOnly); in handle_retr()
680 if (vsf_sysutil_retval_is_error(opened_file)) in handle_retr()
688 vsf_sysutil_lock_file_read(opened_file); in handle_retr()
690 vsf_sysutil_fstat(opened_file, &s_p_statbuf); in handle_retr()
708 vsf_sysutil_deactivate_noblock(opened_file); in handle_retr()
719 vsf_sysutil_lseek_to(opened_file, offset); in handle_retr()
750 opened_file, 0, is_ascii); in handle_retr()
791 vsf_sysutil_close(opened_file); in handle_retr()
/dports/devel/valgrind-lts/valgrind-dragonfly-dragonfly/callgrind/
H A Dcallgrind_annotate.in1117 my $opened_file = "";
1122 $opened_file = $try_name;
1130 if (not $opened_file) {
1162 if ((stat $opened_file)[9] > (stat $input_file)[9]) {
/dports/devel/valgrind/valgrind-dragonfly-dragonfly/callgrind/
H A Dcallgrind_annotate.in1117 my $opened_file = "";
1122 $opened_file = $try_name;
1130 if (not $opened_file) {
1162 if ((stat $opened_file)[9] > (stat $input_file)[9]) {
/dports/devel/cvs-devel/cvs-1.12.13/diff/
H A Ddiff.c252 int opened_file = 0; local
267 if (opened_file)
703 opened_file = 1;
719 if (opened_file)

123