OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:jobj
(Results
1 - 5
of
5
) sorted by null
/dalvik/vm/
JniInternal.h
162
Object* dvmDecodeIndirectRef(JNIEnv* env, jobject
jobj
);
165
INLINE Object* dvmDecodeIndirectRef(JNIEnv* env, jobject
jobj
) {
166
return (Object*)
jobj
;
174
jobjectRefType dvmGetJNIRefType(JNIEnv* env, jobject
jobj
);
227
INLINE jweak dvmObfuscateWeakGlobalRef(jobject
jobj
) {
228
return (jweak) ((u4)
jobj
^ WEAK_GLOBAL_XOR);
244
INLINE bool dvmIsWeakGlobalRef(jobject
jobj
) {
245
return (((u4)
jobj
& 0x07) == 0x07);
Jni.c
568
* If "
jobj
" is NULL or an invalid indirect reference, this returns NULL.
570
Object* dvmDecodeIndirectRef(JNIEnv* env, jobject
jobj
)
572
if (
jobj
== NULL)
577
switch (dvmGetIndirectRefType(
jobj
)) {
581
result = dvmGetFromIndirectRefTable(pRefTable,
jobj
);
589
result = dvmGetFromIndirectRefTable(pRefTable,
jobj
);
603
LOGW("Invalid indirect reference %p in decodeIndirectRef\n",
jobj
);
632
jobject
jobj
;
639
jobj
= (jobject) dvmAddToIndirectRefTable(pRefTable, cookie, obj);
640
if (
jobj
== NULL)
776
jobj
ect
jobj
;
local
1045
jobj
ect
jobj
= dvmNormalizeWeakGlobalRef(jwobj);
local
2009
jobj
ect
jobj
= addLocalReference(env, obj);
local
2028
jobj
ect
jobj
= addLocalReference(env, obj);
local
[
all
...]
CheckJni.c
411
static void checkFieldType(JNIEnv* env, jobject
jobj
, jfieldID fieldID,
428
Object* obj = dvmDecodeIndirectRef(env,
jobj
);
464
* Verify that "
jobj
" is a valid object, and that it's an object that JNI
469
static void checkObject0(JNIEnv* env, jobject
jobj
, const char* func)
474
if (
jobj
== NULL)
477
if (dvmIsWeakGlobalRef(
jobj
)) {
482
jobj
= dvmNormalizeWeakGlobalRef((jweak)
jobj
);
485
if (dvmGetJNIRefType(env,
jobj
) == JNIInvalidRefType) {
486
LOGW("JNI WARNING: %p is not a valid JNI reference\n",
jobj
);
[
all
...]
/external/jhead/
main.c
194
static void saveAttributes(JNIEnv *env, jobject
jobj
, jstring jfilename, jstring jattributes)
389
static jboolean appendThumbnail(JNIEnv *env, jobject
jobj
, jstring jfilename, jstring jthumbnailfilename)
418
static void commitChanges(JNIEnv *env, jobject
jobj
, jstring jfilename)
431
static jbyteArray getThumbnail(JNIEnv *env, jobject
jobj
, jstring jfilename)
527
static jstring getAttributes(JNIEnv *env, jobject
jobj
, jstring jfilename)
/external/webkit/JavaScriptCore/runtime/
ArrayPrototype.cpp
474
JSValue
jObj
= thisObj->get(exec, j);
476
if (
jObj
.isUndefined())
482
l.append(
jObj
);
486
compareResult = (
jObj
.toString(exec) < minObj.toString(exec)) ? -1 : 1;
490
minObj =
jObj
;
[
all
...]
Completed in 225 milliseconds