HomeSort by relevance Sort by last modified time
    Searched refs:jvalue (Results 51 - 73 of 73) sorted by null

1 23

  /external/libpcap/
gencode.h 300 struct block *gen_atmfield_code(int atmfield, bpf_int32 jvalue, bpf_u_int32 jtype, int reverse);
305 struct block *gen_mtp3field_code(int mtp3field, bpf_u_int32 jvalue, bpf_u_int32 jtype, int reverse);
gencode.c     [all...]
  /frameworks/base/media/jni/
android_media_MediaDrm.cpp 432 jstring jvalue = static_cast<jstring>(obj); local
435 String8 value = JStringToString8(env, jvalue);
439 env->DeleteLocalRef(jvalue);
457 jstring jvalue = env->NewStringUTF(map.valueAt(i).string()); local
458 env->CallObjectMethod(hashMap, gFields.hashmap.put, jkey, jvalue);
460 env->DeleteLocalRef(jvalue);
983 JNIEnv *env, jobject thiz, jstring jname, jstring jvalue) {
998 if (jvalue == NULL) {
1005 String8 value = JStringToString8(env, jvalue);
1013 JNIEnv *env, jobject thiz, jstring jname, jbyteArray jvalue) {
    [all...]
  /art/runtime/entrypoints/portable/
portable_trampoline_entrypoints.cc 219 JValue result = interpreter::EnterInterpreterFromStub(self, mh, code_item, *shadow_frame);
231 ScopedObjectAccessUnchecked& soa, std::vector<jvalue>& args) :
235 jvalue val;
265 std::vector<jvalue>& args_;
291 std::vector<jvalue> args;
305 JValue result = InvokeProxyInvocationHandler(soa, proxy_mh.GetShorty(),
  /dalvik/vm/interp/
Stack.h 200 JValue* pResult, ...);
202 bool fromJni, JValue* pResult, va_list args);
204 bool fromJni, JValue* pResult, const jvalue* args);
Stack.cpp 425 JValue* pResult, ...)
443 bool fromJni, JValue* pResult, va_list args)
539 * The values were likely placed into an uninitialized jvalue array using
549 bool fromJni, JValue* pResult, const jvalue* args)
665 JValue retval;
    [all...]
  /art/runtime/
jni_internal.cc 141 ArgArray* arg_array, JValue* result, char result_type)
150 static JValue InvokeWithVarArgs(const ScopedObjectAccess& soa, jobject obj,
156 JValue result;
168 static JValue InvokeVirtualOrInterfaceWithJValues(const ScopedObjectAccess& soa,
169 jobject obj, jmethodID mid, jvalue* args)
174 JValue result;
181 static JValue InvokeVirtualOrInterfaceWithVarArgs(const ScopedObjectAccess& soa,
187 JValue result;
369 jvalue args[2];
607 JValue InvokeWithJValues(const ScopedObjectAccess& soa, jobject obj, jmethodID mid
    [all...]
invoke_arg_array_builder.h 109 JValue value;
118 JValue value;
131 void BuildArgArray(const ScopedObjectAccess& soa, mirror::Object* receiver, jvalue* args)
jni_internal.h 46 union JValue;
56 JValue InvokeWithJValues(const ScopedObjectAccess&, jobject obj, jmethodID mid, jvalue* args)
59 ArgArray *arg_array, JValue* result, char result_type)
reflection.cc 73 // Translate javaArgs to a jvalue[].
74 UniquePtr<jvalue[]> args(new jvalue[arg_count]);
75 JValue* decoded_args = reinterpret_cast<JValue*>(args.get());
88 JValue value(InvokeWithJValues(soa, javaReceiver, mid, args.get()));
123 const JValue& src, JValue& dst) {
213 mirror::Object* BoxPrimitive(Primitive::Type src_class, const JValue& value) {
257 JValue result
    [all...]
check_jni.cc     [all...]
debugger.cc 129 uint32_t dex_pc, const JValue& return_value)
    [all...]
dex_file.h     [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 308 JValue result = interpreter::EnterInterpreterFromStub(self, mh, code_item, *shadow_frame);
321 std::vector<jvalue>* args) :
325 jvalue val;
359 std::vector<jvalue>* args_;
394 std::vector<jvalue> args;
411 JValue result = InvokeProxyInvocationHandler(soa, proxy_mh.GetShorty(),
  /external/jhead/
main.c 60 jstring jvalue = (*env)->NewStringUTF(env, value); local
62 jobject jobject_of_entryset = (*env)->CallObjectMethod(env, hashMap, putMethod, jkey, jvalue);
65 (*env)->ReleaseStringUTFChars(env, jvalue, value);
  /art/runtime/entrypoints/
entrypoint_utils.cc 301 JValue InvokeProxyInvocationHandler(ScopedObjectAccessUnchecked& soa, const char* shorty,
303 std::vector<jvalue>& args) {
309 const JValue zero;
321 JValue jv;
334 jvalue invocation_args[3];
363 JValue result_unboxed;
entrypoint_utils.h 336 JValue InvokeProxyInvocationHandler(ScopedObjectAccessUnchecked& soa, const char* shorty,
338 std::vector<jvalue>& args)
  /external/javasqlite/src/main/native/
sqlite_jni.c 165 jvalue v;
176 jvalue v;
187 jvalue v;
212 jvalue v;
222 jvalue v;
232 jvalue v;
244 jvalue v;
255 jvalue v;
1224 jvalue v;
    [all...]
  /dalvik/vm/
CheckJni.cpp 64 static void checkCallResultCommon(const u4* args, const JValue* pResult,
133 static inline bool callNeedsCheck(const u4* args, JValue* pResult,
142 void dvmCheckCallJNIMethod(const u4* args, JValue* pResult,
    [all...]
Jni.cpp 824 static void appendValue(char type, const JValue value, char* buf, size_t n, bool appendComma)
895 JValue value;
912 static void logNativeMethodExit(const Method* method, Thread* self, const JValue returnValue)
    [all...]
Debugger.cpp     [all...]
  /dalvik/vm/native/
java_lang_Class.cpp 32 JValue* pResult)
123 static void Dalvik_java_lang_Class_classForName(const u4* args, JValue* pResult)
138 JValue* pResult)
152 JValue* pResult)
180 JValue* pResult)
231 JValue* pResult)
247 JValue* pResult)
263 JValue* pResult)
277 JValue* pResult)
294 const u4* args, JValue* pResult
    [all...]
  /cts/tests/tests/jni/libjnitest/
macroized_tests.c     [all...]

Completed in 446 milliseconds

1 23