Home
last modified time | relevance | path

Searched refs:st (Results 1 – 19 of 19) sorted by relevance

/art/libartbase/base/
Dos_linux.cc74 struct stat st; in FileExists() local
75 if (stat(name, &st) == 0) { in FileExists()
77 return S_ISREG(st.st_mode); // TODO: Deal with symlinks? in FileExists()
87 struct stat st; in DirectoryExists() local
88 if (stat(name, &st) == 0) { in DirectoryExists()
89 return S_ISDIR(st.st_mode); // TODO: Deal with symlinks? in DirectoryExists()
96 struct stat st; in GetFileSizeBytes() local
97 if (stat(name, &st) == 0) { in GetFileSizeBytes()
98 return st.st_size; // TODO: Deal with symlinks? According to the documentation, in GetFileSizeBytes()
/art/runtime/interpreter/mterp/x86/
Dfloating_point.S58 GET_VREG_XMM${suff} %xmm0, %ecx # %xmm0 <- 1st src
68 GET_VREG_XMM${suff} %xmm0, %ecx # %xmm0 <- 1st src
171 fstp %st(1)
172 fstpl VREG_ADDRESS(rINST) # fp[vAA] <- %st
188 fstp %st(1)
189 fstpl VREG_ADDRESS(%ecx) # %st to vA
204 fstp %st(1)
205 fstps VREG_ADDRESS(rINST) # %st to vAA
221 fstp %st(1)
222 fstps VREG_ADDRESS(%ecx) # %st to vA
/art/runtime/interpreter/mterp/x86_64/
Dfloating_point.S58 GET_VREG_XMM${suff} %xmm0, %rcx # %xmm0 <- 1st src
68 GET_VREG_XMM${suff} %xmm0, %rcx # %xmm0 <- 1st src
171 fstp %st(1)
172 fstpl VREG_ADDRESS(rINSTq) # fp[vAA] <- %st
188 fstp %st(1)
189 fstpl VREG_ADDRESS(%rcx) # %st to vA
204 fstp %st(1)
205 fstps VREG_ADDRESS(rINSTq) # %st to vAA
221 fstp %st(1)
222 fstps VREG_ADDRESS(%rcx) # %st to vA
/art/test/004-StackWalk/
Dexpected.txt2 1st call
/art/test/004-StackWalk/src/
DMain.java112 Main st = new Main(); in main() local
113 st.$noinline$f(); in main()
/art/test/979-const-method-handle/src/
DMain.java223 StreamTokenizer st = new StreamTokenizer(new StringReader("Quack Moo Woof")); in main() local
224 while (st.nextToken() != StreamTokenizer.TT_EOF) { in main()
225 System.out.println((String) getSval().invokeExact(st)); in main()
/art/test/ti-agent/
Dtrace_helper.cc147 ScopedCallbackState st(jnienv, jvmti, thread); in singleStepCB() local
179 ScopedCallbackState st(jnienv, jvmti, thr); in fieldAccessCB() local
217 ScopedCallbackState st(jnienv, jvmti, thr); in fieldModificationCB() local
260 ScopedCallbackState st(jnienv, jvmti, thr); in methodExitCB() local
295 ScopedCallbackState st(jnienv, jvmti, thr); in methodEntryCB() local
/art/test/115-native-bridge/
Dnativebridge.cc423 struct stat st; in native_bridge_initialize() local
425 if (stat(app_code_cache_dir, &st) == 0) { in native_bridge_initialize()
426 if (!S_ISDIR(st.st_mode)) { in native_bridge_initialize()
/art/test/1956-pop-frame-jit-calling/src/art/
DTest1953.java59 private static void SafePrintStackTrace(StackTraceElement st[]) {
60 for (StackTraceElement e : st) {
/art/test/1953-pop-frame/src/art/
DTest1953.java59 private static void SafePrintStackTrace(StackTraceElement st[]) {
60 for (StackTraceElement e : st) {
/art/test/1954-pop-frame-jit/src/art/
DTest1953.java59 private static void SafePrintStackTrace(StackTraceElement st[]) {
60 for (StackTraceElement e : st) {
/art/test/1955-pop-frame-jit-called/src/art/
DTest1953.java59 private static void SafePrintStackTrace(StackTraceElement st[]) {
60 for (StackTraceElement e : st) {
/art/runtime/interpreter/mterp/arm/
Dmain.S410 add rPC, r1, r0, lsl #1 @ Create direct pointer to 1st dex opcode
/art/dexdump/
Ddexdump.cc821 const char* st = pDexFile->StringDataByIdx(dex::StringIndex(index)); in indexString() local
822 outSize = snprintf(buf.get(), bufSize, "\"%s\" // string@%0*x", st, width, index); in indexString()
/art/dexlayout/
Ddexlayout.cc415 const char* st = header->StringIds()[index]->Data(); in IndexString() local
416 outSize = snprintf(buf.get(), buf_size, "\"%s\" // string@%0*x", st, width, index); in IndexString()
/art/runtime/
Doat_file_manager.cc296 ScopedTrace st("Collision check"); in CheckClassCollision() local
/art/runtime/interpreter/mterp/mips/
Dmain.S785 EAS1(rPC, a1, a0) # Create direct pointer to 1st dex opcode
/art/compiler/optimizing/
Doptimizing_compiler.cc1471 TimingLogger::ScopedTiming st("Generate JIT debug info", &logger); in GenerateJitDebugInfo() local
/art/runtime/jit/
Djit_code_cache.cc1545 TimingLogger::ScopedTiming st("Code cache collection", &logger); in GarbageCollectCache() local