HomeSort by relevance Sort by last modified time
    Searched full:_file (Results 1 - 25 of 505) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/Carbon/
File.py 1 from _File import *
  /ndk/tests/device/test-gnustl-full/unit/cppunit/
file_reporter.h 37 { _file = stderr; }
45 _file = fopen(file, "w");
47 fopen_s(&_file, file, "w");
55 { _file = stream; }
59 fclose(_file);
61 fflush(_file);
69 fprintf(_file, "\n\n%s(%d) : %s(%s);", in_file, in_line, in_macroName, in_macro);
73 { fprintf(_file, "\n\t%s", msg ); }
84 fprintf(_file, "%s::%s", in_className, in_shortTestName);
94 fprintf(_file, "%s", ignoredReason)
142 FILE* _file; member in class:FileReporter
    [all...]
  /ndk/tests/device/test-stlport/unit/cppunit/
file_reporter.h 37 { _file = stderr; }
45 _file = fopen(file, "w");
47 fopen_s(&_file, file, "w");
55 { _file = stream; }
59 fclose(_file);
61 fflush(_file);
69 fprintf(_file, "\n\n%s(%d) : %s(%s);", in_file, in_line, in_macroName, in_macro);
73 { fprintf(_file, "\n\t%s", msg ); }
84 fprintf(_file, "%s::%s", in_className, in_shortTestName);
94 fprintf(_file, "%s", ignoredReason)
142 FILE* _file; member in class:FileReporter
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/io/nio/
RandomAccessFileBuffer.java 33 final RandomAccessFile _file; field in class:RandomAccessFileBuffer
42 _file = new RandomAccessFile(file,"rw");
43 _channel=_file.getChannel();
56 _file = new RandomAccessFile(file,"rw");
57 _channel=_file.getChannel();
69 _file = new RandomAccessFile(file,access==READWRITE?"rw":"r");
70 _channel=_file.getChannel();
90 synchronized (_file)
93 _file.setLength(0);
106 synchronized (_file)
    [all...]
  /frameworks/compile/libbcc/bcinfo/Wrap/
file_wrapper_input.cpp 24 _file = fopen(name, "rb");
25 if (_file == nullptr) {
32 fclose(_file);
36 size_t found = fread((char*) buffer, 1, wanted, _file);
37 if (feof(_file) || ferror(_file)) {
63 return fseek(_file, (long) pos, SEEK_SET) == 0;
file_wrapper_output.cpp 23 _file = fopen(name, "wb");
24 if (nullptr == _file) {
31 fclose(_file);
35 return EOF != fputc(byte, _file);
44 return buffer_size == fwrite(buffer, 1, buffer_size, _file);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
ANTLRFileStream.as 8 protected var _file:File;
15 _file = file;
33 return _file.name;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sec_api/
stdio_s.h 19 _CRTIMP errno_t __cdecl clearerr_s(FILE *_File);
20 int __cdecl fprintf_s(FILE *_File,const char *_Format,...);
21 size_t __cdecl fread_s(void *_DstBuf,size_t _DstSize,size_t _ElementSize,size_t _Count,FILE *_File);
22 _CRTIMP int __cdecl _fscanf_s_l(FILE *_File,const char *_Format,_locale_t _Locale,...);
32 _CRTIMP int __cdecl _fscanf_l(FILE *_File,const char *_Format,_locale_t _Locale,...);
38 int __cdecl vfprintf_s(FILE *_File,const char *_Format,va_list _ArgList);
53 _CRTIMP int __cdecl _fprintf_p(FILE *_File,const char *_Format,...);
56 _CRTIMP int __cdecl _vfprintf_p(FILE *_File,const char *_Format,va_list _ArgList);
65 _CRTIMP int __cdecl _fprintf_l(FILE *_File,const char *_Format,_locale_t _Locale,...);
66 _CRTIMP int __cdecl _fprintf_p_l(FILE *_File,const char *_Format,_locale_t _Locale,...)
    [all...]
  /development/tools/axl/
log.py 25 """_file: filename or open file"""
28 self._file = open(file, "a")
30 self._file = file
41 self._file.write("%s %s\n" % (timeStr, ln))
42 self._file.flush()
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
stdio.h 31 int _file; member in struct:_iobuf
153 int __cdecl __mingw_fscanf(FILE * __restrict__ _File,const char * __restrict__ _Format,...);
377 int __cdecl fprintf(FILE * __restrict__ _File,const char * __restrict__ _Format,...);
381 int __cdecl vfprintf(FILE * __restrict__ _File,const char * __restrict__ _Format,va_list _ArgList);
385 int __cdecl fscanf(FILE * __restrict__ _File,const char * __restrict__ _Format,...) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
420 _CRTIMP int __cdecl _filbuf(FILE *_File);
421 _CRTIMP int __cdecl _flsbuf(int _Ch,FILE *_File);
427 void __cdecl clearerr(FILE *_File);
428 int __cdecl fclose(FILE *_File);
435 int __cdecl feof(FILE *_File);
    [all...]
assert.h 46 _wassert(const wchar_t *_Message,const wchar_t *_File,unsigned _Line);
48 _assert (const char *_Message, const char *_File, unsigned _Line);
  /external/lzma/CPP/7zip/Archive/Common/
MultiStream.cpp 82 CFileItem _file;
88 _file.Name = name;
89 _file.IsStartPosDefined = true;
90 _file.StartPos = 0;
105 _file.UnPackSize = _curPos;
106 _file.FileCRC = _crc.GetDigest();
107 RINOK(WriteVolumeHeader(_archive, _file, _options));
110 _file.StartPos += _file.UnPackSize;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
aifc.py 260 # _file -- the open file with methods read(), close(), and seek()
297 self._file = file
312 chunk = Chunk(self._file)
353 return self._file
363 self._file.close()
538 # _file -- the open file with methods write(), close(), tell(), seek()
577 self._file = file
595 if self._file:
724 self._file.write(data)
735 if self._file is None
    [all...]
sunau.py 161 if self._file:
165 self._file = file
208 return self._file
256 data = self._file.read()
258 data = self._file.read(nframes * self._framesize * self._nchannels)
267 self._file.seek(self._hdr_size)
275 self._file.seek(pos * self._framesize + self._hdr_size)
279 self._file = None
290 if self._file:
294 self._file = fil
    [all...]
mailbox.py 576 self._file = f
625 _lock_file(self._file)
631 _unlock_file(self._file)
640 _sync_flush(self._file)
649 # Check length of self._file; if it's changed, some other process
651 self._file.seek(0, 2)
652 cur_len = self._file.tell()
664 self._file.seek(start)
668 buffer = self._file.read(min(4096,
669 stop - self._file.tell())
    [all...]
tempfile.py 506 self._file = _StringIO()
519 file = self._file
520 newfile = self._file = TemporaryFile(*self._TemporaryFileArgs)
529 # won't work here, because _file may change from a
535 if self._file.closed:
540 self._file.close()
544 return self._file.__iter__()
547 self._file.close()
551 return self._file.closed
555 return self._file.fileno(
    [all...]
wave.py 99 _file -- the open file with methods read(), close(), and seek()
128 self._file = Chunk(file, bigendian = 0)
129 if self._file.getname() != 'RIFF':
131 if self._file.read(4) != 'WAVE':
138 chunk = Chunk(self._file, bigendian = 0)
175 return self._file
185 self._file = None
279 _file -- the open file with methods write(), close(), tell(), seek()
313 self._file = file
425 data.tofile(self._file)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
aifc.py 260 # _file -- the open file with methods read(), close(), and seek()
297 self._file = file
312 chunk = Chunk(self._file)
353 return self._file
363 self._file.close()
538 # _file -- the open file with methods write(), close(), tell(), seek()
577 self._file = file
595 if self._file:
724 self._file.write(data)
735 if self._file is None
    [all...]
sunau.py 161 if self._file:
165 self._file = file
208 return self._file
256 data = self._file.read()
258 data = self._file.read(nframes * self._framesize * self._nchannels)
267 self._file.seek(self._hdr_size)
275 self._file.seek(pos * self._framesize + self._hdr_size)
279 self._file = None
290 if self._file:
294 self._file = fil
    [all...]
mailbox.py 576 self._file = f
625 _lock_file(self._file)
631 _unlock_file(self._file)
640 _sync_flush(self._file)
649 # Check length of self._file; if it's changed, some other process
651 self._file.seek(0, 2)
652 cur_len = self._file.tell()
664 self._file.seek(start)
668 buffer = self._file.read(min(4096,
669 stop - self._file.tell())
    [all...]
tempfile.py 506 self._file = _StringIO()
519 file = self._file
520 newfile = self._file = TemporaryFile(*self._TemporaryFileArgs)
529 # won't work here, because _file may change from a
535 if self._file.closed:
540 self._file.close()
544 return self._file.__iter__()
547 self._file.close()
551 return self._file.closed
555 return self._file.fileno(
    [all...]
wave.py 99 _file -- the open file with methods read(), close(), and seek()
128 self._file = Chunk(file, bigendian = 0)
129 if self._file.getname() != 'RIFF':
131 if self._file.read(4) != 'WAVE':
138 chunk = Chunk(self._file, bigendian = 0)
175 return self._file
185 self._file = None
279 _file -- the open file with methods write(), close(), tell(), seek()
313 self._file = file
425 data.tofile(self._file)
    [all...]
  /bionic/libc/stdio/
stdio.c 50 ret = TEMP_FAILURE_RETRY(read(fp->_file, buf, n));
65 (void) TEMP_FAILURE_RETRY(lseek(fp->_file, (off_t)0, SEEK_END));
67 return TEMP_FAILURE_RETRY(write(fp->_file, buf, n));
76 ret = TEMP_FAILURE_RETRY(lseek(fp->_file, (off_t)offset, whence));
89 return close(((FILE *)cookie)->_file);
  /external/jetty/src/java/org/eclipse/jetty/util/resource/
FileResource.java 55 private File _file; field in class:FileResource
86 _file =new File(new URI(url.toString()));
102 _file = new File(uri);
104 _file = new File("//"+uri.getAuthority()+URIUtil.decodePath(url.getFile()));
113 _file = new File(perm==null?url.getFile():perm.getName());
116 if (_file.isDirectory())
133 _file=file;
134 if (_file.isDirectory() && !_urlString.endsWith("/"))
178 ((FileResource)r)._alias=((FileResource)r)._file.getCanonicalFile().toURI().toURL();
194 String abs=_file.getAbsolutePath()
    [all...]
  /external/clang/test/Analysis/
taint-tester.cpp 4 typedef struct _FILE FILE;

Completed in 665 milliseconds

1 2 3 4 5 6 7 8 91011>>