Searched refs:ops (Results 1 – 5 of 5) sorted by relevance
69 AgentOptions* ops; in DataDumpRequestCb() local70 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() local79 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() local108 jvmti->Allocate(sizeof(AgentOptions), reinterpret_cast<unsigned char**>(&ops))); in SetupJvmti()109 ops->fatal = (strcmp(options, "fatal") == 0); in SetupJvmti()[all …]
645 static std::string AdvanceOption(const std::string& ops) { in AdvanceOption() argument646 return ops.substr(ops.find(',') + 1); in AdvanceOption()649 static bool HasNextOption(const std::string& ops) { in HasNextOption() argument650 return ops.find(',') != std::string::npos; in HasNextOption()660 std::string ops(options); in ReadOptions() local661 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()
648 Integer ops = distribution.get(operation); in runTest() local649 if (ops == null) { in runTest()650 ops = 1; in runTest()652 ops++; in runTest()654 distribution.put(operation, ops); in runTest()
182 int ops = 2 * (N-1); in threadTests() local183 for (int i = 0; i < ops; i++) { in threadTests()
192 inline void emitOneOf(const char* const (&ops)[N]) { in emitOneOf()193 fputs(ops[random0(N)], out_); in emitOneOf()