Home
last modified time | relevance | path

Searched refs:prop (Results 1 – 3 of 3) sorted by relevance

/art/tools/class2greylist/src/com/android/class2greylist/
DAnnotationHandler.java21 for (ElementValuePair prop : annotation.getElementValuePairs()) { in stringifyAnnotationProperties()
22 content.put(prop.getNameString(), prop.getValue().stringifyValue()); in stringifyAnnotationProperties()
/art/tools/jvmti-agents/wrapagentproperties/
DREADME.md15 ….so -agentpath:$ANDROID_HOST_OUT/lib64/libwrapagentproperties.so=/path/to/prop.file,/path/to/agent…
20 ### prop file format.
26 #### Example prop file
28 # abc.prop
Dwrapagentproperties.cc139 static jvmtiError WrapGetSystemProperty(jvmtiEnv* env, const char* prop, char** out) { in WrapGetSystemProperty()
142 auto it = funcs->proxy_vm->map->find(prop); in WrapGetSystemProperty()
145 std::string str_prop(prop); in WrapGetSystemProperty()
153 return funcs->original_interface->GetSystemProperty(env, prop, out); in WrapGetSystemProperty()
195 static jvmtiError WrapSetSystemProperty(jvmtiEnv* env, const char* prop, const char* val) { in WrapSetSystemProperty()
198 jvmtiError res = funcs->original_interface->SetSystemProperty(env, prop, val); in WrapSetSystemProperty()
202 auto it = funcs->proxy_vm->map->find(prop); in WrapSetSystemProperty()
278 std::string prop = substrOf(line, 0, line.find('=')); in ReadPropMap() local
280 LOG(INFO) << "Overriding property " << std::quoted(prop) << " new value is " in ReadPropMap()
282 map->insert({prop, val}); in ReadPropMap()