Lines Matching refs:in

5  * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
110 UsageError(" --image-classes=<classname-file>: specifies classes to include in an image.");
178 std::ifstream::in));
402 static bool ParseInt(const char* in, int* out) {
404 int result = strtol(in, &end, 10);
405 if (in == end || *end != '\0') {
437 // that result in a deadlock.
492 // TODO: Remove when we switch to LOG when we can guarantee it won't prevent shutdown in error
546 // When setting timeouts, keep in mind that the build server may not be as fast as your desktop.
557 // TODO: Switch to Mutex when we can guarantee it won't prevent shutdown in error cases.
887 // Whilst we're in native take the opportunity to initialize well known classes.
890 // If --image-classes was specified, calculate the full list of classes to include in the image
938 * If we're not in interpret-only mode, go ahead and compile small applications. Don't
991 // 2. There are absolute pointers from Methods in the image to their
992 // code in the oat.
994 // 3. There are absolute pointers from the code in the oat to Methods
995 // in the image.
997 // 4. There are absolute pointers from code in the oat to other code
998 // in the oat.
1014 // the ELF file to understand the in memory segment layout including
1017 // Compiler to touch up absolute references in the oat file.
1043 // If we don't want to strip in place, copy from unstripped location to stripped location.
1048 UniquePtr<File> in(OS::OpenFileForReading(oat_unstripped.c_str()));
1053 int bytes_read = TEMP_FAILURE_RETRY(read(in->Fd(), buffer.get(), buffer_size));