Home
last modified time | relevance | path

Searched refs:val (Results 176 – 200 of 229) sorted by relevance

12345678910

/art/runtime/entrypoints/
Dentrypoint_utils.cc83 jobject val = args[i].l; in InvokeProxyInvocationHandler() local
84 soa.Env()->SetObjectArrayElement(args_jobj, i, val); in InvokeProxyInvocationHandler()
88 ObjPtr<mirror::Object> val = BoxPrimitive(Primitive::GetType(shorty[i + 1]), jv); in InvokeProxyInvocationHandler() local
89 if (val == nullptr) { in InvokeProxyInvocationHandler()
93 soa.Decode<mirror::ObjectArray<mirror::Object>>(args_jobj)->Set<false>(i, val); in InvokeProxyInvocationHandler()
/art/openjdkjvmti/
Devents.cc602 void AddDelayedNonStandardExitEvent(const art::ShadowFrame* frame, bool is_object, jvalue val) in AddDelayedNonStandardExitEvent() argument
607 jobject new_val = is_object ? self->GetJniEnv()->NewGlobalRef(val.l) : nullptr; in AddDelayedNonStandardExitEvent()
615 saved.return_val_.j = val.j; in AddDelayedNonStandardExitEvent()
684 jvalue val; in MethodExited() local
687 val.l = return_jobj.get(); in MethodExited()
694 val); in MethodExited()
733 jvalue val; in MethodExited() local
737 val.j = return_value.GetJ(); in MethodExited()
744 val); in MethodExited()
757 jvalue val; in MethodUnwind() local
[all …]
Djvmti_allocator.h135 void construct(pointer p, const_reference val) { in construct() argument
136 new (static_cast<void*>(p)) value_type(val); in construct()
/art/test/1916-get-set-current-frame/src/art/
DTest1916.java37 public static void reportValue(Object val) { in reportValue() argument
38 System.out.println("\tValue is '" + val + "'"); in reportValue()
/art/tools/ahat/etc/
Dhprofdump.py267 val = readval(ty, hprof) ; length -= valsize(ty) variable
268 print " %d %s 0x%x" % (idx, showty(ty), val)
275 val = readval(ty, hprof) ; length -= valsize(ty) variable
276 print " %s %s 0x%x" % (showstr(nameid), showty(ty), val)
/art/tools/jvmti-agents/ti-alloc-sample/
Dti_alloc_sample.cc44 struct jlongContainer { jlong val; }; member
290 allocation << ", size[" << size.val << ", hex: 0x" << std::hex << size.val << "]"; in formatAllocation()
332 jlongContainer{.val = size}); in logVMObjectAlloc()
/art/test/1981-structural-redef-private-method-handles/src/art/
DTest1981.java270 String val = "foo"; in doTest() local
271 System.out.println("Setting BAZ to " + printGeneric(vh, val) + " with new mh."); in doTest()
272 lookup.findStaticSetter(Transform.class, "BAZ", Object.class).invoke(val); in doTest()
/art/test/1935-get-set-current-frame-jit/src/
DMain.java46 public static void reportValue(Object val) { in reportValue() argument
47 System.out.println("\tValue is '" + val + "'"); in reportValue()
/art/cmdline/detail/
Dcmdline_parse_argument_detail.h158 for (auto [val, unused] : value_map_) { in DumpHelp()
159 os << (first ? "{" : "|") << val; in DumpHelp()
555 TArg val = value; in SaveArgument() local
556 save_argument_(val); in SaveArgument()
/art/tools/veridex/
Dveridex.cc91 static bool StartsWith(const char* str, const char* val) { in StartsWith() argument
92 return strlen(str) >= strlen(val) && memcmp(str, val, strlen(val)) == 0; in StartsWith()
/art/cmdline/
Dcmdline_parser.h249 void SetHelp(std::optional<const char*>&& val) { in SetHelp()
250 argument_info_.help_ = val; in SetHelp()
253 void SetCategory(std::optional<const char*>&& val) { in SetCategory()
254 argument_info_.category_ = val; in SetCategory()
256 void SetMetavar(std::optional<const char*>&& val) { in SetMetavar()
257 argument_info_.metavar_ = val; in SetMetavar()
/art/test/901-hello-ti-agent/
Dbasics.cc160 JNIEnv* env, jclass Main_klass ATTRIBUTE_UNUSED, jint iflag, jboolean val) { in Java_art_Test901_setVerboseFlag() argument
162 jvmtiError result = jvmti_env->SetVerboseFlag(flag, val); in Java_art_Test901_setVerboseFlag()
/art/test/1962-multi-thread-events/
Dmulti_thread_events.cc42 jvalue val ATTRIBUTE_UNUSED) { in cbMethodEntry()
/art/dt_fd_forward/
Ddt_fd_forward.cc233 uint64_t val; in ReadFully() local
234 int unused = TEMP_FAILURE_RETRY(read(wakeup_fd_, &val, sizeof(val))); in ReadFully()
235 DCHECK(unused == sizeof(val) || errno == EAGAIN); in ReadFully()
501 T HandleResult(IOResult res, T val, T fail) { in HandleResult() argument
507 return val; in HandleResult()
/art/runtime/
Dlock_word.h271 explicit LockWord(uint32_t val) : value_(val) { in LockWord() argument
/art/runtime/base/
Dquasi_atomic.h166 static void SwapMutexWrite64(volatile int64_t* addr, int64_t val);
Dmutex-inl.h41 static inline int futex(volatile int *uaddr, int op, int val, const struct timespec *timeout, in futex() argument
43 return syscall(SYS_futex, uaddr, op, val, timeout, uaddr2, val3); in futex()
/art/runtime/native/
Dsun_misc_Unsafe.cc474 union {int32_t val; jfloat converted;} conv; in Unsafe_getFloat() member
475 conv.val = obj->GetField32(MemberOffset(offset)); in Unsafe_getFloat()
482 union {int32_t converted; jfloat val;} conv; in Unsafe_putFloat() member
483 conv.val = newValue; in Unsafe_putFloat()
491 union {int64_t val; jdouble converted;} conv; in Unsafe_getDouble() member
492 conv.val = obj->GetField64(MemberOffset(offset)); in Unsafe_getDouble()
499 union {int64_t converted; jdouble val;} conv; in Unsafe_putDouble() member
500 conv.val = newValue; in Unsafe_putDouble()
/art/tools/dmtracedump/
Dtracedump.cc916 uint32_t val = getc(fp); in read2LE() local
917 val |= getc(fp) << 8; in read2LE()
918 return val; in read2LE()
921 uint32_t val = getc(fp); in read4LE() local
922 val |= getc(fp) << 8; in read4LE()
923 val |= getc(fp) << 16; in read4LE()
924 val |= getc(fp) << 24; in read4LE()
925 return val; in read4LE()
928 uint64_t val = getc(fp); in read8LE() local
929 val |= (uint64_t) getc(fp) << 8; in read8LE()
[all …]
/art/compiler/utils/
Dswap_space.h196 void construct(pointer p, const_reference val) { in construct() argument
197 new (static_cast<void*>(p)) value_type(val); in construct()
/art/compiler/optimizing/
Dload_store_analysis.h142 void SetValueKilledByLoopSideEffects(bool val) { in SetValueKilledByLoopSideEffects() argument
143 value_killed_by_loop_side_effects_ = val; in SetValueKilledByLoopSideEffects()
150 void SetHasAliasedLocations(bool val) { in SetHasAliasedLocations() argument
151 has_aliased_locations_ = val; in SetHasAliasedLocations()
/art/dexdump/
Ddexdump.cc200 static const char* strBool(bool val) { in strBool() argument
201 return val ? "true" : "false"; in strBool()
207 static const char* quotedBool(bool val) { in quotedBool() argument
208 return val ? "\"true\"" : "\"false\""; in quotedBool()
229 static int countOnes(u4 val) { in countOnes() argument
230 val = val - ((val >> 1) & 0x55555555); in countOnes()
231 val = (val & 0x33333333) + ((val >> 2) & 0x33333333); in countOnes()
232 return (((val + (val >> 4)) & 0x0F0F0F0F) * 0x01010101) >> 24; in countOnes()
/art/test/906-iterate-heap/
Diterate_heap.cc381 uint64_t val; in Java_art_Test906_iterateThroughHeapPrimitiveFields() local
382 memcpy(&val, &value, sizeof(uint64_t)); // To avoid undefined behavior. in Java_art_Test906_iterateThroughHeapPrimitiveFields()
383 oss << android::base::StringPrintf("%016" PRIx64, val); in Java_art_Test906_iterateThroughHeapPrimitiveFields()
/art/test/909-attach-agent/src-art/
DMain.java54 private static native void setDebuggingAllowed(boolean val); in setDebuggingAllowed() argument
/art/dexlayout/
Ddexlayout.cc99 static const char* StrBool(bool val) { in StrBool() argument
100 return val ? "true" : "false"; in StrBool()
106 static const char* QuotedBool(bool val) { in QuotedBool() argument
107 return val ? "\"true\"" : "\"false\""; in QuotedBool()
128 static int CountOnes(uint32_t val) { in CountOnes() argument
129 val = val - ((val >> 1) & 0x55555555); in CountOnes()
130 val = (val & 0x33333333) + ((val >> 2) & 0x33333333); in CountOnes()
131 return (((val + (val >> 4)) & 0x0F0F0F0F) * 0x01010101) >> 24; in CountOnes()

12345678910