HomeSort by relevance Sort by last modified time
    Searched refs:obj (Results 1 - 25 of 2797) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/core/libnl_2/
object.c 21 void nl_object_put(struct nl_object *obj)
23 obj->ce_refcnt--;
24 if (!obj->ce_refcnt)
25 nl_object_free(obj);
28 void nl_object_free(struct nl_object *obj)
30 nl_cache_remove(obj);
  /external/dropbear/libtommath/
makefile.bcc 10 OBJECTS=bncore.obj bn_mp_init.obj bn_mp_clear.obj bn_mp_exch.obj bn_mp_grow.obj bn_mp_shrink.obj \
11 bn_mp_clamp.obj bn_mp_zero.obj bn_mp_set.obj bn_mp_set_int.obj bn_mp_init_size.obj bn_mp_copy.obj
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebCoreRefObject.h 33 static inline WebCoreRefObject* Retain(WebCoreRefObject* obj)
35 if (obj)
36 obj->ref();
37 return obj;
40 static inline void Release(WebCoreRefObject* obj)
42 if (obj)
43 obj->unref();
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
regress-104584.js 27 * on the second call to obj.toString() or print(obj) below -
39 function F(obj)
41 if(!obj)
42 obj = {};
43 obj.toString();
45 obj.toString();
49 function G(obj)
51 if(!obj)
52 obj = {}
    [all...]
  /dalvik/tests/003-omnibus-opcodes/src/
Monitor.java 12 Object obj = new Object(); local
13 synchronized (obj) {
15 obj = null; // does NOT cause a failure on exit
16 assert(obj == null);
24 Object obj = null; local
27 synchronized (obj) {
35 obj = new Object();
36 synchronized (obj) {
  /external/icu4c/common/
uhash_us.cpp 19 uhash_deleteHashtable(void *obj) {
21 delete (Hashtable*) obj;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Object/
regress-79129-001.js 47 obj={};
48 obj.a = obj.b = obj.c = 1;
49 delete obj.a;
50 delete obj.b;
51 delete obj.c;
52 obj.d = obj.e = 1;
53 obj.a=1
    [all...]
shell.js 24 * Suppose obj is an instance of a native type, e.g. Number.
25 * Then obj.toString() invokes Number.prototype.toString().
28 * The difference is this: suppose obj = new Number(7).
33 * The getJSClass() function returns 'Number', the [[Class]] property of obj.
43 function getJSType(obj)
45 if (isObject(obj))
46 return findType(obj);
52 function getJSClass(obj)
54 if (isObject(obj))
55 return findClass(findType(obj));
    [all...]
  /external/qemu/android/utils/
vector.h 23 #define AVECTOR_SIZE(obj,name) \
24 (obj)->num_##name
26 #define AVECTOR_INIT(obj,name) \
28 (obj)->name = NULL; \
29 (obj)->num_##name = 0; \
30 (obj)->max_##name = 0; \
33 #define AVECTOR_INIT_ALLOC(obj,name,count) \
35 AARRAY_NEW0( (obj)->name, (count) ); \
36 (obj)->num_##name = 0; \
37 (obj)->max_##name = (count);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/atomics/atomics.types.generic/
bool.pass.cpp 59 volatile std::atomic<bool> obj(true);
60 assert(obj == true);
61 std::atomic_init(&obj, false);
62 assert(obj == false);
63 std::atomic_init(&obj, true);
64 assert(obj == true);
65 bool b0 = obj.is_lock_free();
66 obj.store(false);
67 assert(obj == false);
68 obj.store(true, std::memory_order_release)
    [all...]
  /external/zlib/src/watcom/
watcom_l.mak 12 OBJS = adler32.obj compress.obj crc32.obj deflate.obj &
13 gzclose.obj gzlib.obj gzread.obj gzwrite.obj &
14 infback.obj inffast.obj inflate.obj inftrees.obj
    [all...]
  /external/clang/test/Analysis/
pointer-to-member.cpp 14 A obj; local
16 obj.m_ptr = &obj;
17 clang_analyzer_eval(obj.m_ptr); // expected-warning{{TRUE}}
19 clang_analyzer_eval(obj); // expected-warning{{TRUE}}
21 obj.m_ptr = 0;
22 clang_analyzer_eval(obj.m_ptr); // expected-warning{{FALSE}}
24 clang_analyzer_eval(obj); // expected-warning{{FALSE}}
32 A obj; local
33 obj.m_ptr = 0
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
common.h 34 #define LOG_J(sev, obj) LOG(sev) << "Jingle:" << obj->ToString() << ": "
35 #define LOG_JV(sev, obj) LOG_V(sev) << "Jingle:" << obj->ToString() << ": "
  /dalvik/vm/alloc/
WriteBarrier.h 29 INLINE void dvmWriteBarrierField(const Object *obj, void *addr)
31 dvmMarkCard(obj);
37 INLINE void dvmWriteBarrierObject(const Object *obj)
39 dvmMarkCard(obj);
47 INLINE void dvmWriteBarrierArray(const ArrayObject *obj,
50 dvmMarkCard((Object *)obj);
  /dalvik/vm/mterp/c/
OP_MONITOR_ENTER.cpp 3 Object* obj; local
8 obj = (Object*)GET_REGISTER(vsrc1);
9 if (!checkForNullExportPC(obj, fp, pc))
11 ILOGV("+ locking %p %s", obj, obj->clazz->descriptor);
13 dvmLockObject(self, obj);
  /external/openssl/crypto/des/
makefile.bc 13 .c.obj:
16 .obj.exe:
17 $(CC) $(LFLAGS) -e$*.exe $*.obj libdes.lib
21 # "make clean": use a directory containing only libdes .exe and .obj files...
24 del *.obj
28 OBJS= cbc_cksm.obj cbc_enc.obj ecb_enc.obj pcbc_enc.obj \
29 qud_cksm.obj rand_key.obj set_key.obj str2key.obj
    [all...]
  /external/dropbear/libtomcrypt/
parsenames.pl 11 foreach my $obj (@a) {
12 $len = $len + length($obj);
13 $obj =~ s/\*/\$/;
16 $len = length($obj);
18 print "$obj ";
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicIntegerFieldUpdater.java 62 * @param obj An object whose field to conditionally set
66 * @throws ClassCastException if {@code obj} is not an instance
69 public abstract boolean compareAndSet(T obj, int expect, int update);
82 * @param obj An object whose field to conditionally set
86 * @throws ClassCastException if {@code obj} is not an instance
89 public abstract boolean weakCompareAndSet(T obj, int expect, int update);
96 * @param obj An object whose field to set
99 public abstract void set(T obj, int newValue);
105 * @param obj An object whose field to set
109 public abstract void lazySet(T obj, int newValue)
    [all...]
AtomicLongFieldUpdater.java 65 * @param obj An object whose field to conditionally set
69 * @throws ClassCastException if {@code obj} is not an instance
72 public abstract boolean compareAndSet(T obj, long expect, long update);
85 * @param obj An object whose field to conditionally set
89 * @throws ClassCastException if {@code obj} is not an instance
92 public abstract boolean weakCompareAndSet(T obj, long expect, long update);
99 * @param obj An object whose field to set
102 public abstract void set(T obj, long newValue);
108 * @param obj An object whose field to set
112 public abstract void lazySet(T obj, long newValue)
    [all...]
  /external/qemu/
qobject.h 66 #define QOBJECT(obj) (&(obj)->base)
69 #define QINCREF(obj) \
70 qobject_incref(QOBJECT(obj))
73 #define QDECREF(obj) \
74 qobject_decref(QOBJECT(obj))
77 #define QOBJECT_INIT(obj, qtype_type) \
78 obj->base.refcnt = 1; \
79 obj->base.type = qtype_type
84 static inline void qobject_incref(QObject *obj)
    [all...]
  /external/v8/src/
inspector.h 44 static void DumpObjectType(FILE* out, Object* obj, bool print_more);
45 static void DumpObjectType(FILE* out, Object* obj) {
46 DumpObjectType(out, obj, false);
48 static void DumpObjectType(Object* obj, bool print_more) {
49 DumpObjectType(stdout, obj, print_more);
51 static void DumpObjectType(Object* obj) {
52 DumpObjectType(stdout, obj, false);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
AttCertIssuer.java 15 ASN1Encodable obj; field in class:AttCertIssuer
19 Object obj)
21 if (obj == null || obj instanceof AttCertIssuer)
23 return (AttCertIssuer)obj;
25 else if (obj instanceof V2Form)
27 return new AttCertIssuer(V2Form.getInstance(obj));
29 else if (obj instanceof GeneralNames)
31 return new AttCertIssuer((GeneralNames)obj);
33 else if (obj instanceof ASN1TaggedObject
    [all...]
  /external/chromium/webkit/glue/
glue_serialize.cc 70 inline void WriteData(const void* data, int length, SerializeObject* obj) {
71 obj->pickle.WriteData(static_cast<const char*>(data), length);
74 inline void ReadData(const SerializeObject* obj, const void** data,
77 obj->pickle.ReadData(&obj->iter, &tmp, length);
81 inline bool ReadBytes(const SerializeObject* obj, const void** data,
84 if (!obj->pickle.ReadBytes(&obj->iter, &tmp, length))
90 inline void WriteInteger(int data, SerializeObject* obj) {
91 obj->pickle.WriteInt(data)
209 WriteInteger(static_cast<int>(data.size()), obj); local
338 WriteInteger(static_cast<int>(children.size()), obj); local
460 SerializeObject obj; local
473 SerializeObject obj; local
    [all...]
  /external/zlib/src/contrib/delphi/
zlibd32.mak 21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj
22 OBJ2 = gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.ob
    [all...]
  /external/zlib/src/contrib/pascal/
zlibd32.mak 21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj
22 OBJ2 = gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.ob
    [all...]

Completed in 2358 milliseconds

1 2 3 4 5 6 7 8 91011>>