Home
last modified time | relevance | path

Searched refs:_File (Results 1 – 25 of 4599) sorted by relevance

12345678910>>...184

/dports/graphics/mirtk/MIRTK-2.0.0-122-g38210fa/Modules/Common/src/
H A DCifstream.cc39 _File(nullptr), in Cifstream()
55 _File = gzopen(fname, "rb"); in Open()
59 if (err != 0) _File = nullptr; in Open()
60 _File = fp; in Open()
62 _File = fopen(fname, "rb"); in Open()
64 if (_File == nullptr) { in Open()
72 if (_File != nullptr) { in Close()
74 gzclose(reinterpret_cast<gzFile>(_File)); in Close()
76 fclose(reinterpret_cast<FILE *>(_File)); in Close()
78 _File = nullptr; in Close()
[all …]
H A DCofstream.cc37 _File(nullptr), in Cofstream()
74 errno_t err = fopen_s(&_File, fname, "wb"); in Open()
75 if (err != 0) _File = nullptr; in Open()
77 _File = fopen(fname, "wb"); in Open()
79 if (_File == nullptr) { in Open()
95 if (_File != nullptr) { in Close()
96 fclose(_File); in Close()
97 _File = nullptr; in Close()
141 if (offset != -1) fseek(_File, offset, SEEK_SET); in Write()
142 return (fwrite(data, length, 1, _File) == 1); in Write()
[all …]
/dports/multimedia/zoneminder/zoneminder-1.36.5/web/api/lib/Cake/Cache/Engine/
H A DFileEngine.php38 protected $_File = null; variable in FileEngine
138 $this->_File->flock(LOCK_EX);
141 $this->_File->rewind();
142 …$success = $this->_File->ftruncate(0) && $this->_File->fwrite($contents) && $this->_File->fflush();
166 $this->_File->rewind();
178 $this->_File->next();
181 $this->_File->next();
210 $this->_File = null;
227 $this->_File = null;
356 empty($this->_File) ||
[all …]
/dports/www/elgg/elgg-3.3.23/vendor/cakephp/cache/Engine/
H A DFileEngine.php41 protected $_File; variable in Cake\\Cache\\Engine\\FileEngine
160 $this->_File->rewind();
163 $this->_File->fflush();
168 $this->_File = null;
192 $this->_File->rewind();
205 $this->_File->next();
208 $this->_File->next();
243 $this->_File = null;
261 $this->_File = null;
413 empty($this->_File) ||
[all …]
/dports/lang/zig/zig-0.9.0/lib/libc/include/any-windows-any/sec_api/
H A Dstdio_s.h29 _CRTIMP errno_t __cdecl clearerr_s(FILE *_File);
50 _Ret = _vfscanf_s_l(_File, _Format, _Locale, _ArgList); in _fscanf_s_l()
60 _Ret = _vfscanf_s_l(_File, _Format, NULL, _ArgList); in fscanf_s()
94 _Ret = _vfscanf_l(_File, _Format, _Locale, _ArgList); in _fscanf_l()
187 return _vfprintf_s_l(_File, _Format, NULL, _ArgList); in vfprintf_s()
202 _Ret = _vfprintf_s_l(_File, _Format, _Locale, _ArgList); in _fprintf_s_l()
220 _Ret = _vfprintf_s_l(_File, _Format, NULL, _ArgList); in fprintf_s()
325 return _vfprintf_p_l(_File, _Format, NULL, _ArgList); in _vfprintf_p()
349 _Ret = _vfprintf_p_l(_File, _Format, NULL, _ArgList); in _fprintf_p()
439 _Ret = _vfprintf_l(_File, _Format, _Locale, _ArgList); in _fprintf_l()
[all …]
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/any-windows-any/sec_api/
H A Dstdio_s.h29 _CRTIMP errno_t __cdecl clearerr_s(FILE *_File);
50 _Ret = _vfscanf_s_l(_File, _Format, _Locale, _ArgList); in _fscanf_s_l()
60 _Ret = _vfscanf_s_l(_File, _Format, NULL, _ArgList); in fscanf_s()
94 _Ret = _vfscanf_l(_File, _Format, _Locale, _ArgList); in _fscanf_l()
187 return _vfprintf_s_l(_File, _Format, NULL, _ArgList); in vfprintf_s()
202 _Ret = _vfprintf_s_l(_File, _Format, _Locale, _ArgList); in _fprintf_s_l()
220 _Ret = _vfprintf_s_l(_File, _Format, NULL, _ArgList); in fprintf_s()
325 return _vfprintf_p_l(_File, _Format, NULL, _ArgList); in _vfprintf_p()
349 _Ret = _vfprintf_p_l(_File, _Format, NULL, _ArgList); in _fprintf_p()
439 _Ret = _vfprintf_l(_File, _Format, _Locale, _ArgList); in _fprintf_l()
[all …]
/dports/lang/zig/zig-0.9.0/lib/libc/include/any-windows-any/
H A Dstdio.h611 int __cdecl fclose(FILE *_File);
618 int __cdecl feof(FILE *_File);
619 int __cdecl ferror(FILE *_File);
620 int __cdecl fflush(FILE *_File);
621 int __cdecl fgetc(FILE *_File);
642 long __cdecl ftell(FILE *_File);
656 return ftell(_File); in ftello()
659 return _ftelli64(_File); in ftello64()
684 int __cdecl getc(FILE *_File);
688 int __cdecl _getw(FILE *_File);
[all …]
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/any-windows-any/
H A Dstdio.h611 int __cdecl fclose(FILE *_File);
618 int __cdecl feof(FILE *_File);
619 int __cdecl ferror(FILE *_File);
620 int __cdecl fflush(FILE *_File);
621 int __cdecl fgetc(FILE *_File);
642 long __cdecl ftell(FILE *_File);
656 return ftell(_File); in ftello()
659 return _ftelli64(_File); in ftello64()
684 int __cdecl getc(FILE *_File);
688 int __cdecl _getw(FILE *_File);
[all …]
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stdlib/
H A Duu.pyi4 _File = Union[str, BinaryIO]
10 …in_file: _File, out_file: _File, name: Optional[str] = ..., mode: Optional[int] = ..., *, backtick…
14 …def encode(in_file: _File, out_file: _File, name: Optional[str] = ..., mode: Optional[int] = ...) …
16 def decode(in_file: _File, out_file: Optional[_File] = ..., mode: Optional[int] = ..., quiet: int =…
H A Dnntplib.pyi8 _File = Union[IO[bytes], bytes, str, None]
58 self, group: str, date: Union[datetime.date, datetime.datetime], *, file: _File = ...
60 …def list(self, group_pattern: Optional[str] = ..., *, file: _File = ...) -> Tuple[str, List[str]]:…
64 def help(self, *, file: _File = ...) -> Tuple[str, List[str]]: ...
68 def head(self, message_spec: Any = ..., *, file: _File = ...) -> Tuple[str, ArticleInfo]: ...
69 def body(self, message_spec: Any = ..., *, file: _File = ...) -> Tuple[str, ArticleInfo]: ...
70 def article(self, message_spec: Any = ..., *, file: _File = ...) -> Tuple[str, ArticleInfo]: ...
72 def xhdr(self, hdr: str, str: Any, *, file: _File = ...) -> Tuple[str, List[str]]: ...
73 …def xover(self, start: int, end: int, *, file: _File = ...) -> Tuple[str, List[Tuple[int, Dict[str…
75 self, message_spec: Union[None, str, List[Any], Tuple[Any, ...]], *, file: _File = ...
[all …]
/dports/devel/py-mypy/mypy-0.910/mypy/typeshed/stdlib/
H A Duu.pyi4 _File = Union[Text, BinaryIO]
10 …in_file: _File, out_file: _File, name: Optional[str] = ..., mode: Optional[int] = ..., *, backtick…
14 …def encode(in_file: _File, out_file: _File, name: Optional[str] = ..., mode: Optional[int] = ...) …
16 def decode(in_file: _File, out_file: Optional[_File] = ..., mode: Optional[int] = ..., quiet: int =…
H A Dnntplib.pyi8 _File = Union[IO[bytes], bytes, str, None]
58 self, group: str, date: Union[datetime.date, datetime.datetime], *, file: _File = ...
60 …def list(self, group_pattern: Optional[str] = ..., *, file: _File = ...) -> Tuple[str, List[str]]:…
64 def help(self, *, file: _File = ...) -> Tuple[str, List[str]]: ...
68 def head(self, message_spec: Any = ..., *, file: _File = ...) -> Tuple[str, ArticleInfo]: ...
69 def body(self, message_spec: Any = ..., *, file: _File = ...) -> Tuple[str, ArticleInfo]: ...
70 def article(self, message_spec: Any = ..., *, file: _File = ...) -> Tuple[str, ArticleInfo]: ...
72 def xhdr(self, hdr: str, str: Any, *, file: _File = ...) -> Tuple[str, List[str]]: ...
73 …def xover(self, start: int, end: int, *, file: _File = ...) -> Tuple[str, List[Tuple[int, Dict[str…
75 self, message_spec: Union[None, str, List[Any], Tuple[Any, ...]], *, file: _File = ...
[all …]
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/typeshed/stdlib/2and3/
H A Duu.pyi5 _File = Union[Text, BinaryIO]
10 …def encode(in_file: _File, out_file: _File, name: Optional[str] = ..., mode: Optional[int] = ..., …
12 …def encode(in_file: _File, out_file: _File, name: Optional[str] = ..., mode: Optional[int] = ...) …
13 def decode(in_file: _File, out_file: Optional[_File] = ..., mode: Optional[int] = ..., quiet: int =…
/dports/devel/py-jedi/jedi-0.18.0/jedi/third_party/typeshed/stdlib/2and3/
H A Duu.pyi5 _File = Union[Text, BinaryIO]
10 …def encode(in_file: _File, out_file: _File, name: Optional[str] = ..., mode: Optional[int] = ..., …
12 …def encode(in_file: _File, out_file: _File, name: Optional[str] = ..., mode: Optional[int] = ...) …
13 def decode(in_file: _File, out_file: Optional[_File] = ..., mode: Optional[int] = ..., quiet: int =…
/dports/sysutils/aptly/aptly-1.4.0/deb/
H A Ddeb_test.go20 _, _File, _, _ := runtime.Caller(0)
21 …s.debFile = filepath.Join(filepath.Dir(_File), "../system/files/libboost-program-options-dev_1.49.…
22 s.debFile2 = filepath.Join(filepath.Dir(_File), "../system/changes/hardlink_0.2.1_amd64.deb")
23 …s.debFileWithXzControl = filepath.Join(filepath.Dir(_File), "../system/changes/libqt5concurrent5-d…
24 s.dscFile = filepath.Join(filepath.Dir(_File), "../system/files/pyspi_0.6.1-1.3.dsc")
25 …s.dscFileNoSign = filepath.Join(filepath.Dir(_File), "../system/files/pyspi-0.6.1-1.3.stripped.dsc…
32 _, _File, _, _ := runtime.Caller(0)
33 _, err = GetControlFileFromDeb(_File)
56 _, _File, _, _ := runtime.Caller(0)
57 _, err = GetControlFileFromDsc(_File, verifier)
/dports/devel/godot2-tools/godot-2.1.6-stable/core/bind/
H A Dcore_bind.cpp1486 void _File::close() { in close()
1492 bool _File::is_open() const { in is_open()
1507 int64_t _File::get_pos() const { in get_pos()
1513 int64_t _File::get_len() const { in get_len()
1525 uint8_t _File::get_8() const { in get_8()
1530 uint16_t _File::get_16() const { in get_16()
1535 uint32_t _File::get_32() const { in get_32()
1636 bool _File::get_endian_swap() { in get_endian_swap()
1777 void _File::_bind_methods() { in _bind_methods()
1832 _File::_File() { in _File() function in _File
[all …]
/dports/devel/godot2/godot-2.1.6-stable/core/bind/
H A Dcore_bind.cpp1486 void _File::close() { in close()
1492 bool _File::is_open() const { in is_open()
1507 int64_t _File::get_pos() const { in get_pos()
1513 int64_t _File::get_len() const { in get_len()
1525 uint8_t _File::get_8() const { in get_8()
1530 uint16_t _File::get_16() const { in get_16()
1535 uint32_t _File::get_32() const { in get_32()
1636 bool _File::get_endian_swap() { in get_endian_swap()
1777 void _File::_bind_methods() { in _bind_methods()
1832 _File::_File() { in _File() function in _File
[all …]
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stdlib/@python2/
H A Duu.pyi3 _File = Union[Text, BinaryIO]
7 def encode(in_file: _File, out_file: _File, name: Optional[str] = ..., mode: Optional[int] = ...) -…
8 def decode(in_file: _File, out_file: Optional[_File] = ..., mode: Optional[int] = ..., quiet: int =…
H A Dnntplib.pyi7 _File = Union[IO[bytes], bytes, str, None]
57 self, group: str, date: Union[datetime.date, datetime.datetime], *, file: _File = ...
59 …def list(self, group_pattern: Optional[str] = ..., *, file: _File = ...) -> Tuple[str, List[str]]:…
63 def help(self, *, file: _File = ...) -> Tuple[str, List[str]]: ...
67 def head(self, message_spec: Any = ..., *, file: _File = ...) -> Tuple[str, ArticleInfo]: ...
68 def body(self, message_spec: Any = ..., *, file: _File = ...) -> Tuple[str, ArticleInfo]: ...
69 def article(self, message_spec: Any = ..., *, file: _File = ...) -> Tuple[str, ArticleInfo]: ...
71 def xhdr(self, hdr: str, str: Any, *, file: _File = ...) -> Tuple[str, List[str]]: ...
72 …def xover(self, start: int, end: int, *, file: _File = ...) -> Tuple[str, List[Tuple[int, Dict[str…
74 self, message_spec: Union[None, str, List[Any], Tuple[Any, ...]], *, file: _File = ...
[all …]
H A Daifc.pyi14 _File = Union[Text, IO[bytes]]
18 def __init__(self, f: _File) -> None: ...
37 def __init__(self, f: _File) -> None: ...
64 def open(f: _File, mode: Literal["r", "rb"]) -> Aifc_read: ...
66 def open(f: _File, mode: Literal["w", "wb"]) -> Aifc_write: ...
68 def open(f: _File, mode: Optional[str] = ...) -> Any: ...
70 def openfp(f: _File, mode: Literal["r", "rb"]) -> Aifc_read: ...
72 def openfp(f: _File, mode: Literal["w", "wb"]) -> Aifc_write: ...
74 def openfp(f: _File, mode: Optional[str] = ...) -> Any: ...
/dports/devel/py-jedi/jedi-0.18.0/jedi/third_party/typeshed/stdlib/3/
H A Dnntplib.pyi9 _File = Union[IO[bytes], bytes, str, None]
58 …def newgroups(self, date: Union[datetime.date, datetime.datetime], *, file: _File = ...) -> Tuple[…
59 …def newnews(self, group: str, date: Union[datetime.date, datetime.datetime], *, file: _File = ...)…
60 …def list(self, group_pattern: Optional[str] = ..., *, file: _File = ...) -> Tuple[str, List[str]]:…
64 def help(self, *, file: _File = ...) -> Tuple[str, List[str]]: ...
68 def head(self, message_spec: Any = ..., *, file: _File = ...) -> Tuple[str, ArticleInfo]: ...
69 def body(self, message_spec: Any = ..., *, file: _File = ...) -> Tuple[str, ArticleInfo]: ...
70 def article(self, message_spec: Any = ..., *, file: _File = ...) -> Tuple[str, ArticleInfo]: ...
72 def xhdr(self, hdr: str, str: Any, *, file: _File = ...) -> Tuple[str, List[str]]: ...
73 …def xover(self, start: int, end: int, *, file: _File = ...) -> Tuple[str, List[Tuple[int, Dict[str…
[all …]
H A Dfaulthandler.pyi7 _File = Union[_HasFileno, int]
11 def dump_traceback(file: _File = ..., all_threads: bool = ...) -> None: ...
12 def dump_traceback_later(timeout: float, repeat: bool = ..., file: _File = ..., exit: bool = ...) -…
13 def enable(file: _File = ..., all_threads: bool = ...) -> None: ...
16 …def register(signum: int, file: _File = ..., all_threads: bool = ..., chain: bool = ...) -> None: …
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/typeshed/stdlib/3/asyncio/
H A Dbase_subprocess.pyi10 _File = Optional[Union[int, IO[Any]]]
22 _pipes: Dict[int, _File] # undocumented
26 …shell: bool, stdin: _File, stdout: _File, stderr: _File, bufsize: int, waiter: Optional[futures.Fu…
28 …, bytes, Sequence[Union[str, bytes]]], shell: bool, stdin: _File, stdout: _File, stderr: _File, bu…
35 def get_pipe_transport(self, fd: int) -> _File: ... # type: ignore
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stdlib/asyncio/
H A Dbase_subprocess.pyi6 _File = Optional[Union[int, IO[Any]]]
18 _pipes: Dict[int, _File] # undocumented
26 stdin: _File,
27 stdout: _File,
28 stderr: _File,
38 stdin: _File,
39 stdout: _File,
40 stderr: _File,
50 def get_pipe_transport(self, fd: int) -> _File: ... # type: ignore
/dports/devel/py-mypy/mypy-0.910/mypy/typeshed/stdlib/asyncio/
H A Dbase_subprocess.pyi6 _File = Optional[Union[int, IO[Any]]]
18 _pipes: Dict[int, _File] # undocumented
26 stdin: _File,
27 stdout: _File,
28 stderr: _File,
38 stdin: _File,
39 stdout: _File,
40 stderr: _File,
50 def get_pipe_transport(self, fd: int) -> _File: ... # type: ignore

12345678910>>...184