Home | History | Annotate | Download | only in base

Lines Matching refs:file

5  *  that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
24 FILE* FdopenPlatformFileForWriting(PlatformFile file) {
25 if (file == kInvalidPlatformFileValue)
27 int fd = _open_osfhandle(reinterpret_cast<intptr_t>(file), 0);
34 bool ClosePlatformFile(PlatformFile file) {
35 return CloseHandle(file) != 0;
40 FILE* FdopenPlatformFileForWriting(PlatformFile file) {
41 return fdopen(file, "w");
44 bool ClosePlatformFile(PlatformFile file) {
45 return close(file);