OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:env2
(Results
1 - 6
of
6
) sorted by null
/art/test/909-attach-agent/
attach.cc
40
jvmtiEnv*
env2
= nullptr;
local
51
CHECK_CALL_SUCCESS(vm->GetEnv(reinterpret_cast<void**>(&
env2
), JVMTI_VERSION_1_0));
52
if (env ==
env2
) {
66
CHECK_CALL_SUCCESS(
env2
->GetEnvironmentLocalStorage(reinterpret_cast<void**>(&get_data)));
68
Println("
env2
did not have nullptr local storage.");
79
CHECK_CALL_SUCCESS(
env2
->DisposeEnvironment());
/external/compiler-rt/test/tsan/
longjmp4.cc
14
jmp_buf
env2
;
local
15
memcpy(
env2
, env, sizeof(jmp_buf));
16
longjmp(
env2
, 42);
/bionic/tests/
dl_test.cpp
228
std::string
env2
= std::string("LD_PRELOAD=") + get_testlib_root() + "/ld_config_test_helper_lib3.so";
local
232
eth.SetEnv({ env.c_str(),
env2
.c_str(), nullptr });
/external/boringssl/src/crypto/
cpu-intel.c
240
const char *env1, *
env2
;
local
257
env2
= strchr(env1, ':');
258
if (
env2
!= NULL) {
259
handle_cpu_env(&OPENSSL_ia32cap_P[2],
env2
+ 1);
/art/test/1900-track-alloc/src/art/
Test1900.java
105
long
env2
= newJvmtiEnv();
local
113
def = doAllocate(
env2
, 10);
118
doDeallocate(
env2
, def);
123
destroyJvmtiEnv(
env2
);
/art/test/901-hello-ti-agent/
basics.cc
80
jvmtiEnv*
env2
= nullptr;
local
91
CHECK_CALL_SUCCESS(vm->GetEnv(reinterpret_cast<void**>(&
env2
), JVMTI_VERSION_1_0));
92
if (env ==
env2
) {
106
CHECK_CALL_SUCCESS(
env2
->GetEnvironmentLocalStorage(reinterpret_cast<void**>(&get_data)));
108
printf("
env2
did not have nullptr local storage.\n");
120
InstallVMEvents(
env2
);
123
CHECK_CALL_SUCCESS(
env2
->DisposeEnvironment());
Completed in 290 milliseconds