Home
last modified time | relevance | path

Searched refs:ops (Results 1 – 5 of 5) sorted by relevance

/art/tools/jvmti-agents/jit-load/
Djitload.cc69 AgentOptions* ops; in DataDumpRequestCb() local
70 CHECK_CALL_SUCCESS(jvmti->GetEnvironmentLocalStorage(reinterpret_cast<void**>(&ops))); in DataDumpRequestCb()
71 LOG(WARNING) << "Jit thread has loaded " << ops->cnt << " classes"; in DataDumpRequestCb()
78 AgentOptions* ops; in ClassPrepareJit() local
79 CHECK_CALL_SUCCESS(jvmti->GetEnvironmentLocalStorage(reinterpret_cast<void**>(&ops))); in ClassPrepareJit()
82 (ops->fatal ? LOG_STREAM(FATAL) in ClassPrepareJit()
84 ops->cnt++; in ClassPrepareJit()
106 AgentOptions* ops; in SetupJvmti() local
108 jvmti->Allocate(sizeof(AgentOptions), reinterpret_cast<unsigned char**>(&ops))); in SetupJvmti()
109 ops->fatal = (strcmp(options, "fatal") == 0); in SetupJvmti()
[all …]
/art/test/ti-stress/
Dstress.cc645 static std::string AdvanceOption(const std::string& ops) { in AdvanceOption() argument
646 return ops.substr(ops.find(',') + 1); in AdvanceOption()
649 static bool HasNextOption(const std::string& ops) { in HasNextOption() argument
650 return ops.find(',') != std::string::npos; in HasNextOption()
660 std::string ops(options); in ReadOptions() local
661 CHECK_EQ(GetOption(ops), "jvmti-stress") << "Options should start with jvmti-stress"; in ReadOptions()
663 ops = AdvanceOption(ops); in ReadOptions()
664 std::string cur = GetOption(ops); in ReadOptions()
674 LOG(FATAL) << "Unknown option: " << GetOption(ops); in ReadOptions()
676 } while (HasNextOption(ops)); in ReadOptions()
/art/test/004-ThreadStress/src-art/
DMain.java648 Integer ops = distribution.get(operation); in runTest() local
649 if (ops == null) { in runTest()
650 ops = 1; in runTest()
652 ops++; in runTest()
654 distribution.put(operation, ops); in runTest()
/art/test/923-monitors/src/art/
DTest923.java182 int ops = 2 * (N-1); in threadTests() local
183 for (int i = 0; i < ops; i++) { in threadTests()
/art/tools/jfuzz/
Djfuzz.cc192 inline void emitOneOf(const char* const (&ops)[N]) { in emitOneOf()
193 fputs(ops[random0(N)], out_); in emitOneOf()