Searched refs:ate (Results 1 - 11 of 11) sorted by relevance

/external/qemu/slirp-android/
H A Dslirp.c890 struct fw_allow_entry** ate; local
893 ate = &allow_tcp_entries;
896 ate = &allow_udp_entries;
902 while(*ate != NULL)
903 ate = &(*ate)->next;
905 *ate = malloc(sizeof(**ate));
906 if (*ate == NULL) {
912 (*ate)
939 struct fw_allow_entry* ate; local
[all...]
/external/astl/include/
H A Dios_base.h172 // ate: open and seek to end imediately after opening.
178 static const openmode ate = android::ios_baseopenmode_ate; member in class:std::ios_base
/external/stlport/src/details/
H A Dfstream_stdio.cpp183 switch (openmode & (~ios_base::ate)) {
245 if (openmode & ios_base::ate) {
H A Dfstream_unistd.cpp166 switch ( openmode & (~ios_base::ate & ~ios_base::binary) ) {
200 if ((openmode & (ios_base::ate | ios_base::app)) && (LSEEK(file_no, 0, SEEK_END) == -1)) {
H A Dfstream_win32io.cpp228 switch (openmode & (~ios_base::ate & ~ios_base::binary)) {
277 (((openmode & ios_base::ate) != 0) &&
/external/doclava/src/com/google/doclava/apicheck/
H A DApiFile.java558 boolean ate = false;
564 ate = true;
566 return ate;
/external/stlport/src/
H A Dios.cpp71 const ios_base::openmode ios_base::ate; member in class:ios_base
/external/oprofile/include/
H A Dsstream218 if (mode & ios::ate)
/external/stlport/stlport/stl/
H A D_sstream.c78 this->setg(__data_ptr, (_M_mode & ios_base::ate) ? __data_end : __data_ptr, __data_end);
83 if ( _M_mode & (ios_base::app | ios_base::ate) ) {
89 // this->setp((_M_mode & (ios_base::app | ios_base::ate))? __data_end : __data_ptr, __data_end);
H A D_ios_base.h95 _STLP_STATIC_CONSTANT(int, ate = 0x02);
/external/stlport/test/unit/
H A Dfstream_test.cpp309 //File position is at BOF after open, unless we open with ios_base::ate
812 ofstream nullStream(nullStreamName, ios_base::ate);
832 ifstream nullStream(nullStreamName, ios_base::ate);
842 fstream nullStream(nullStreamName, ios_base::in | ios_base::out | ios_base::ate);

Completed in 734 milliseconds