HomeSort by relevance Sort by last modified time
    Searched refs:ate (Results 1 - 25 of 29) sorted by null

1 2

  /external/qemu/slirp-android/
slirp.c 890 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)->next = NULL
939 struct fw_allow_entry* ate; local
    [all...]
  /external/astl/include/
ios_base.h 172 // 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/
fstream_stdio.cpp 183 switch (openmode & (~ios_base::ate)) {
245 if (openmode & ios_base::ate) {
fstream_unistd.cpp 166 switch ( openmode & (~ios_base::ate & ~ios_base::binary) ) {
200 if ((openmode & (ios_base::ate | ios_base::app)) && (LSEEK(file_no, 0, SEEK_END) == -1)) {
fstream_win32io.cpp 228 switch (openmode & (~ios_base::ate & ~ios_base::binary)) {
277 (((openmode & ios_base::ate) != 0) &&
  /ndk/sources/cxx-stl/stlport/src/details/
fstream_stdio.cpp 183 switch (openmode & (~ios_base::ate)) {
245 if (openmode & ios_base::ate) {
fstream_unistd.cpp 166 switch ( openmode & (~ios_base::ate & ~ios_base::binary) ) {
200 if ((openmode & (ios_base::ate | ios_base::app)) && (LSEEK(file_no, 0, SEEK_END) == -1)) {
fstream_win32io.cpp 228 switch (openmode & (~ios_base::ate & ~ios_base::binary)) {
277 (((openmode & ios_base::ate) != 0) &&
  /external/doclava/src/com/google/doclava/apicheck/
ApiFile.java 558 boolean ate = false;
564 ate = true;
566 return ate;
  /external/stlport/stlport/stl/
_sstream.c 78 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);
_ios_base.h 95 _STLP_STATIC_CONSTANT(int, ate = 0x02);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_sstream.c 78 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);
_ios_base.h 95 _STLP_STATIC_CONSTANT(int, ate = 0x02);
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_sstream.c 78 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);
_ios_base.h 95 _STLP_STATIC_CONSTANT(int, ate = 0x02);
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_sstream.c 78 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);
_ios_base.h 95 _STLP_STATIC_CONSTANT(int, ate = 0x02);
  /prebuilt/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/
_sstream.c 78 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);
_ios_base.h 95 _STLP_STATIC_CONSTANT(int, ate = 0x02);
  /external/stlport/src/
ios.cpp 71 const ios_base::openmode ios_base::ate; member in class:ios_base
  /ndk/sources/cxx-stl/stlport/src/
ios.cpp 71 const ios_base::openmode ios_base::ate; member in class:ios_base
  /external/oprofile/include/
sstream 218 if (mode & ios::ate)
  /external/stlport/test/unit/
fstream_test.cpp 309 //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);
  /ndk/tests/device/test-gnustl-full/unit/
fstream_test.cpp 327 //File position is at BOF after open, unless we open with ios_base::ate
830 ofstream nullStream(nullStreamName, ios_base::ate);
850 ifstream nullStream(nullStreamName, ios_base::ate);
860 fstream nullStream(nullStreamName, ios_base::in | ios_base::out | ios_base::ate);
  /ndk/tests/device/test-stlport/unit/
fstream_test.cpp 327 //File position is at BOF after open, unless we open with ios_base::ate
830 ofstream nullStream(nullStreamName, ios_base::ate);
850 ifstream nullStream(nullStreamName, ios_base::ate);
860 fstream nullStream(nullStreamName, ios_base::in | ios_base::out | ios_base::ate);

Completed in 337 milliseconds

1 2