OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:jobj
(Results
1 - 4
of
4
) sorted by null
/dalvik/vm/
JniInternal.h
127
Object* dvmDecodeIndirectRef(JNIEnv* env, jobject
jobj
);
133
jobjectRefType dvmGetJNIRefType(JNIEnv* env, jobject
jobj
);
Jni.cpp
315
* If "
jobj
" is NULL, or is a weak global reference whose reference has
316
* been cleared, this returns NULL. If
jobj
is an invalid indirect
321
Object* dvmDecodeIndirectRef(JNIEnv* env, jobject
jobj
) {
322
if (
jobj
== NULL) {
326
switch (indirectRefKind(
jobj
)) {
329
Object* result = getLocalRefTable(env)->get(
jobj
);
331
LOGE("JNI ERROR (app bug): use of deleted local reference (%p)",
jobj
);
341
Object* result = pRefTable->get(
jobj
);
343
LOGE("JNI ERROR (app bug): use of deleted global reference (%p)",
jobj
);
353
Object* result = pRefTable->get(
jobj
);
394
jobj
ect
jobj
= (
jobj
ect) pRefTable->add(cookie, obj);
local
516
jobj
ect
jobj
= (
jobj
ect) gDvm.jniGlobalRefTable.add(IRT_FIRST_SEGMENT, obj);
local
559
jobj
ect
jobj
= (
jobj
ect) table->add(IRT_FIRST_SEGMENT, obj);
local
[
all
...]
CheckJni.cpp
279
* object type, "
jobj
" is the object we're trying to assign into it.
283
void checkFieldTypeForSet(jobject
jobj
, jfieldID fieldID, PrimitiveType prim, bool isStatic) {
292
if ((field->signature[0] == 'L' || field->signature[0] == '[') &&
jobj
!= NULL) {
294
Object* obj = dvmDecodeIndirectRef(mEnv,
jobj
);
296
* If
jobj
is a weak global ref whose referent has been cleared,
302
indirectRefKindName(
jobj
),
jobj
);
339
* Assumes "
jobj
" has already been validated.
341
void checkInstanceFieldID(jobject
jobj
, jfieldID fieldID) {
344
Object* obj = dvmDecodeIndirectRef(mEnv,
jobj
);
[
all
...]
/external/jhead/
main.c
195
static void saveAttributes(JNIEnv *env, jobject
jobj
, jstring jfilename, jstring jattributes)
390
static jboolean appendThumbnail(JNIEnv *env, jobject
jobj
, jstring jfilename, jstring jthumbnailfilename)
419
static void commitChanges(JNIEnv *env, jobject
jobj
, jstring jfilename)
432
static jbyteArray getThumbnail(JNIEnv *env, jobject
jobj
, jstring jfilename)
529
static jstring getAttributes(JNIEnv *env, jobject
jobj
, jstring jfilename)
Completed in 26 milliseconds