HomeSort by relevance Sort by last modified time
    Searched refs:soa (Results 26 - 50 of 99) sorted by null

12 3 4

  /art/runtime/native/
org_apache_harmony_dalvik_ddmc_DdmServer.cc 26 ScopedObjectAccess soa(env);
java_lang_System.cc 182 ScopedObjectAccess soa(env);
195 mirror::Object* srcObject = soa.Decode<mirror::Object*>(javaSrc);
196 mirror::Object* dstObject = soa.Decode<mirror::Object*>(javaDst);
212 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow();
213 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/ArrayIndexOutOfBoundsException;",
225 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow();
226 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/ArrayStoreException;",
311 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow();
312 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/ArrayStoreException;",
320 ScopedObjectAccess soa(env)
    [all...]
dalvik_system_VMRuntime.cc 53 ScopedObjectAccess soa(env);
61 mirror::Class* element_class = soa.Decode<mirror::Class*>(javaElementClass);
76 mirror::Array* result = mirror::Array::Alloc(soa.Self(), array_class, length);
77 return soa.AddLocalReference<jobject>(result);
84 ScopedObjectAccess soa(env);
85 mirror::Array* array = soa.Decode<mirror::Array*>(javaArray);
150 ScopedObjectAccess soa(env);
159 ScopedObjectAccess soa(env);
java_lang_Runtime.cc 44 ScopedObjectAccess soa(env);
65 mirror::ClassLoader* classLoader = soa.Decode<mirror::ClassLoader*>(javaLoader);
  /art/test/StackWalk/
stack_walk_jni.cc 108 ScopedObjectAccess soa(Thread::Current());
113 TestReferenceMapVisitor mapper(soa.Self());
120 ScopedObjectAccess soa(Thread::Current());
124 TestReferenceMapVisitor mapper(soa.Self());
  /art/runtime/
utils_test.cc 93 ScopedObjectAccess soa(Thread::Current());
96 SirtRef<mirror::String> s(soa.Self(), mirror::String::AllocFromModifiedUtf8(soa.Self(), ""));
99 SirtRef<mirror::ShortArray> a(soa.Self(), mirror::ShortArray::Alloc(soa.Self(), 2));
104 mirror::Object* o = mirror::ObjectArray<mirror::String>::Alloc(soa.Self(), c, 0);
110 ScopedObjectAccess soa(Thread::Current());
114 mirror::Object* o = mirror::ObjectArray<mirror::String>::Alloc(soa.Self(), c, 0);
119 ScopedObjectAccess soa(Thread::Current());
123 mirror::Object* o = mirror::ObjectArray<mirror::String>::Alloc(soa.Self(), c, 0)
    [all...]
thread.cc 154 ScopedObjectAccess soa(self);
158 self->opeer_ = soa.Decode<mirror::Object*>(self->jpeer_);
163 SirtRef<mirror::String> thread_name(self, self->GetThreadName(soa));
172 receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(soa.DecodeMethod(mid));
184 Thread* Thread::FromManagedThread(const ScopedObjectAccessUnchecked& soa,
186 mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_nativePeer);
191 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
193 Locks::thread_list_lock_->AssertHeld(soa.Self());
199 Thread* Thread::FromManagedThread(const ScopedObjectAccessUnchecked& soa, jobject java_thread) {
200 return FromManagedThread(soa, soa.Decode<mirror::Object*>(java_thread))
    [all...]
reference_table_test.cc 27 ScopedObjectAccess soa(Thread::Current());
28 mirror::Object* o1 = mirror::String::AllocFromModifiedUtf8(soa.Self(), "hello");
59 mirror::Object* o2 = mirror::ShortArray::Alloc(soa.Self(), 0);
debugger.cc 210 static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread) {
211 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
247 static JDWP::JdwpError DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, Thread*& thread)
257 mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread);
263 thread = Thread::FromManagedThread(soa, thread_peer);
461 ScopedObjectAccess soa(Thread::Current());
476 ScopedObjectAccess soa(Thread::Current());
481 ScopedObjectAccess soa(Thread::Current());
486 ScopedObjectAccess soa(Thread::Current());
694 ScopedObjectAccessUnchecked soa(Thread::Current())
    [all...]
dex_method_iterator_test.cc 26 ScopedObjectAccess soa(Thread::Current());
invoke_arg_array_builder.h 93 void BuildArgArray(const ScopedObjectAccess& soa, mirror::Object* receiver, va_list ap)
115 Append(reinterpret_cast<int32_t>(soa.Decode<mirror::Object*>(va_arg(ap, jobject))));
131 void BuildArgArray(const ScopedObjectAccess& soa, mirror::Object* receiver, jvalue* args)
156 Append(reinterpret_cast<int32_t>(soa.Decode<mirror::Object*>(args[args_offset].l)));
exception_test.cc 39 ScopedObjectAccess soa(Thread::Current());
40 SirtRef<mirror::ClassLoader> class_loader(soa.Self(),
41 soa.Decode<mirror::ClassLoader*>(LoadDex("ExceptionHandle")));
146 ScopedObjectAccess soa(env);
198 jobject internal = thread->CreateInternalStackTrace(soa);
203 soa.Decode<mirror::ObjectArray<mirror::StackTraceElement>*>(ste_array);
class_linker_test.cc 620 ScopedObjectAccess soa(Thread::Current());
639 ScopedObjectAccess soa(Thread::Current());
645 ScopedObjectAccess soa(Thread::Current());
646 SirtRef<mirror::ClassLoader> class_loader(soa.Self(), soa.Decode<mirror::ClassLoader*>(LoadDex("Nested")));
660 ScopedObjectAccess soa(Thread::Current());
674 ScopedObjectAccess soa(Thread::Current());
    [all...]
dex_file_test.cc 27 ScopedObjectAccess soa(Thread::Current());
75 ScopedObjectAccess soa(Thread::Current());
115 ScopedObjectAccess soa(Thread::Current());
122 ScopedObjectAccess soa(Thread::Current());
128 ScopedObjectAccess soa(Thread::Current());
141 ScopedObjectAccess soa(Thread::Current());
197 ScopedObjectAccess soa(Thread::Current());
  /external/smack/src/org/xbill/DNS/
ZoneTransferIn.java 110 * @param soa The starting SOA.
112 public void startIXFRDeletes(Record soa) throws ZoneTransferException;
116 * @param soa The starting SOA.
118 public void startIXFRAdds(Record soa) throws ZoneTransferException;
139 public void startIXFRDeletes(Record soa) {
141 delta.deletes.add(soa);
142 delta.start = getSOASerial(soa);
146 public void startIXFRAdds(Record soa) {
364 Record soa = new SOARecord(zname, dclass, 0, Name.root, local
379 SOARecord soa = (SOARecord) rec; local
    [all...]
Cache.java 87 NegativeElement(Name name, int type, SOARecord soa, int cred,
93 if (soa != null)
94 cttl = soa.getMinimum();
377 * @param soa The SOA record to add to the negative cache entry, or null.
378 * The negative cache ttl is derived from the SOA.
382 addNegative(Name name, int type, SOARecord soa, int cred) {
384 if (soa != null)
385 ttl = soa.getTTL();
395 soa, cred
664 RRset soa = null, ns = null; local
    [all...]
  /art/compiler/driver/
compiler_driver.cc 541 ScopedObjectAccessUnchecked soa(self);
543 local_class_loader(soa.Env(),
544 soa.AddLocalReference<jobject>(method->GetDeclaringClass()->GetClassLoader()));
545 jclass_loader = soa.Env()->NewGlobalRef(local_class_loader.get());
564 ScopedObjectAccess soa(Thread::Current());
566 mirror::ClassLoader* class_loader = soa.Decode<mirror::ClassLoader*>(jclass_loader);
682 ScopedObjectAccess soa(self);
781 ScopedObjectAccess soa(Thread::Current());
801 ScopedObjectAccess soa(Thread::Current());
827 ScopedObjectAccess soa(Thread::Current())
    [all...]
compiler_driver_test.cc 80 ScopedObjectAccess soa(Thread::Current());
81 mirror::Class* c = class_linker->FindClass(descriptor, soa.Decode<mirror::ClassLoader*>(class_loader));
102 ScopedObjectAccess soa(Thread::Current());
144 ScopedObjectAccess soa(Thread::Current());
  /art/runtime/verifier/
method_verifier_test.cc 55 ScopedObjectAccess soa(Thread::Current());
reg_type_test.cc 31 ScopedObjectAccess soa(Thread::Current());
53 ScopedObjectAccess soa(Thread::Current());
77 ScopedObjectAccess soa(Thread::Current());
343 ScopedObjectAccess soa(Thread::Current());
358 ScopedObjectAccess soa(Thread::Current());
374 ScopedObjectAccess soa(Thread::Current());
396 ScopedObjectAccess soa(Thread::Current());
421 ScopedObjectAccess soa(Thread::Current());
441 ScopedObjectAccess soa(Thread::Current());
454 ScopedObjectAccess soa(Thread::Current())
    [all...]
  /art/runtime/entrypoints/jni/
jni_entrypoints.cc 31 ScopedObjectAccess soa(self);
38 void* native_code = soa.Vm()->FindCodeForNativeMethod(method);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_llvm.c 50 ctx->soa.bld_base.base.gallivm, chan);
52 ctx->soa.bld_base.base.gallivm->builder,
54 ctx->soa.bld_base.base.elem_type, &reg, 1,
80 /* The * 4 is assuming that we are in soa mode. */
82 ctx->soa.bld_base.base.gallivm,
85 ctx->soa.bld_base.base.gallivm->builder,
87 ctx->soa.bld_base.base.elem_type, &reg, 1,
131 ctx->soa.outputs[i][chan], "");
217 struct lp_build_tgsi_context * bld_base = &ctx->soa.bld_base;
  /external/mesa3d/src/gallium/drivers/r600/
r600_llvm.c 50 ctx->soa.bld_base.base.gallivm, chan);
52 ctx->soa.bld_base.base.gallivm->builder,
54 ctx->soa.bld_base.base.elem_type, &reg, 1,
80 /* The * 4 is assuming that we are in soa mode. */
82 ctx->soa.bld_base.base.gallivm,
85 ctx->soa.bld_base.base.gallivm->builder,
87 ctx->soa.bld_base.base.elem_type, &reg, 1,
131 ctx->soa.outputs[i][chan], "");
217 struct lp_build_tgsi_context * bld_base = &ctx->soa.bld_base;
  /art/runtime/interpreter/
interpreter.cc 204 ScopedObjectAccessUnchecked soa(self);
205 result->SetL(soa.Decode<Object*>(self->CreateInternalStackTrace(soa)));
232 ScopedObjectAccessUnchecked soa(self);
237 ScopedLocalRef<jclass> klass(soa.Env(),
238 soa.AddLocalReference<jclass>(method->GetDeclaringClass()));
242 jresult = fn(soa.Env(), klass.get());
244 result->SetL(soa.Decode<Object*>(jresult));
248 ScopedLocalRef<jclass> klass(soa.Env(),
249 soa.AddLocalReference<jclass>(method->GetDeclaringClass()))
    [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 320 uint32_t shorty_len, ScopedObjectAccessUnchecked* soa,
322 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), soa_(soa), args_(args) {}
386 ScopedObjectAccessUnchecked soa(env);
389 jobject rcvr_jobj = soa.AddLocalReference<jobject>(receiver);
396 proxy_mh.GetShortyLength(), &soa, &args);
406 jobject interface_method_jobj = soa.AddLocalReference<jobject>(interface_method);
411 JValue result = InvokeProxyInvocationHandler(soa, proxy_mh.GetShorty(),
421 uint32_t shorty_len, ScopedObjectAccessUnchecked* soa) :
422 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), soa_(soa) {}
444 ScopedObjectAccessUnchecked soa(env)
    [all...]

Completed in 771 milliseconds

12 3 4