HomeSort by relevance Sort by last modified time
    Searched full:rinfo (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/v8/test/cctest/
test-reloc-info.cc 37 RelocInfo rinfo(pc, mode, data, NULL);
38 writer->Write(&rinfo);
74 CHECK_EQ(pc, it.rinfo()->pc());
75 CHECK_EQ(mode, it.rinfo()->rmode());
76 CHECK_EQ(pos, static_cast<int>(it.rinfo()->data()));
91 CHECK_EQ(pc, it.rinfo()->pc());
92 CHECK_EQ(mode, it.rinfo()->rmode());
93 CHECK_EQ(pos, static_cast<int>(it.rinfo()->data()));
107 CHECK_EQ(pc, it.rinfo()->pc());
108 CHECK_EQ(mode, it.rinfo()->rmode())
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
hiddev.h 187 * rinfo.report_type = HID_REPORT_TYPE_INPUT;
188 * rinfo.report_id = HID_REPORT_ID_FIRST;
189 * ret = ioctl(fd, HIDIOCGREPORTINFO, &rinfo);
192 * for (i = 0; i < rinfo.num_fields; i++) {
193 * finfo.report_type = rinfo.report_type;
194 * finfo.report_id = rinfo.report_id;
204 * rinfo.report_id |= HID_REPORT_ID_NEXT;
205 * ret = ioctl(fd, HIDIOCGREPORTINFO, &rinfo);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
hiddev.h 187 * rinfo.report_type = HID_REPORT_TYPE_INPUT;
188 * rinfo.report_id = HID_REPORT_ID_FIRST;
189 * ret = ioctl(fd, HIDIOCGREPORTINFO, &rinfo);
192 * for (i = 0; i < rinfo.num_fields; i++) {
193 * finfo.report_type = rinfo.report_type;
194 * finfo.report_id = rinfo.report_id;
204 * rinfo.report_id |= HID_REPORT_ID_NEXT;
205 * ret = ioctl(fd, HIDIOCGREPORTINFO, &rinfo);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
hiddev.h 187 * rinfo.report_type = HID_REPORT_TYPE_INPUT;
188 * rinfo.report_id = HID_REPORT_ID_FIRST;
189 * ret = ioctl(fd, HIDIOCGREPORTINFO, &rinfo);
192 * for (i = 0; i < rinfo.num_fields; i++) {
193 * finfo.report_type = rinfo.report_type;
194 * finfo.report_id = rinfo.report_id;
204 * rinfo.report_id |= HID_REPORT_ID_NEXT;
205 * ret = ioctl(fd, HIDIOCGREPORTINFO, &rinfo);
  /external/v8/src/
incremental-marking.cc 110 RelocInfo rinfo(pc, RelocInfo::CODE_TARGET, 0, host);
111 RecordWriteIntoCode(host, &rinfo, value);
120 RelocInfo rinfo(pc, RelocInfo::CODE_TARGET, 0, host);
121 RecordWriteIntoCode(host, &rinfo, value);
138 RelocInfo* rinfo,
155 heap_->mark_compact_collector()->RecordRelocSlot(rinfo,
170 void VisitEmbeddedPointer(RelocInfo* rinfo) {
171 ASSERT(rinfo->rmode() == RelocInfo::EMBEDDED_OBJECT);
172 Object* target = rinfo->target_object();
174 heap_->mark_compact_collector()->RecordRelocSlot(rinfo, target)
    [all...]
disassembler.cc 153 } else if (it != NULL && !it->done() && it->rinfo()->pc() == pc &&
154 it->rinfo()->rmode() == RelocInfo::INTERNAL_REFERENCE) {
174 while (!it->done() && it->rinfo()->pc() < pc) {
175 if (RelocInfo::IsComment(it->rinfo()->rmode())) {
177 comments.Add(reinterpret_cast<const char*>(it->rinfo()->data()));
180 pcs.Add(it->rinfo()->pc());
181 rmodes.Add(it->rinfo()->rmode());
182 datas.Add(it->rinfo()->data());
304 if (RelocInfo::IsComment(it->rinfo()->rmode())) {
306 reinterpret_cast<const char*>(it->rinfo()->data()))
    [all...]
incremental-marking-inl.h 72 RelocInfo* rinfo,
75 RecordWriteIntoCodeSlow(obj, rinfo, value);
assembler.cc 312 void RelocInfoWriter::Write(const RelocInfo* rinfo) {
316 ASSERT(rinfo->pc() - last_pc_ >= 0);
320 uint32_t pc_delta = static_cast<uint32_t>(rinfo->pc() - last_pc_);
321 RelocInfo::Mode rmode = rinfo->rmode();
331 ASSERT(static_cast<int>(rinfo->data()) == rinfo->data());
332 int id_delta = static_cast<int>(rinfo->data()) - last_id_;
342 last_id_ = static_cast<int>(rinfo->data());
345 ASSERT(static_cast<int>(rinfo->data()) == rinfo->data())
    [all...]
liveedit.cc 947 virtual void VisitCodeTarget(RelocInfo* rinfo) {
948 if (RelocInfo::IsCodeTarget(rinfo->rmode()) &&
949 Code::GetCodeFromTargetAddress(rinfo->target_address()) == original_) {
950 reloc_infos_.Add(*rinfo);
954 virtual void VisitDebugTarget(RelocInfo* rinfo) {
955 VisitCodeTarget(rinfo);
1269 RelocInfo* rinfo = it.rinfo(); local
    [all...]
mark-compact.cc     [all...]
serialize.cc     [all...]
incremental-marking.h 136 RelocInfo* rinfo,
145 RelocInfo* rinfo,
objects-visiting-inl.h 116 it.rinfo()->Visit(v);
148 it.rinfo()->template Visit<StaticVisitor>(heap);
debug.h 114 inline Address pc() { return reloc_iterator_->rinfo()->pc(); }
116 inline RelocInfo* rinfo() { return reloc_iterator_->rinfo(); } function in class:v8::internal::BreakLocationIterator
118 return reloc_iterator_->rinfo()->rmode();
121 return reloc_iterator_original_->rinfo();
124 return reloc_iterator_original_->rinfo()->rmode();
262 static bool IsDebugBreakAtReturn(RelocInfo* rinfo);
    [all...]
debug.cc 140 rinfo()->data() - debug_info_->shared()->start_position());
145 rinfo()->data() - debug_info_->shared()->start_position());
393 Address target = rinfo()->target_address();
406 rinfo()->set_target_address(stub->entry());
455 return Debug::IsDebugBreak(rinfo()->target_address());
463 original_rinfo()->set_target_address(rinfo()->target_address());
467 Address target = rinfo()->target_address();
473 rinfo()->set_target_address(dbgbrk_code->entry());
480 rinfo()->set_target_address(original_rinfo()->target_address());
    [all...]
  /hardware/ti/wlan/mac80211/wpa_supplicant_lib/
driver_mac80211_nl.c 64 struct nlattr *rinfo[NL80211_RATE_INFO_MAX + 1]; local
86 if (nla_parse_nested(rinfo, NL80211_RATE_INFO_MAX,
91 if (rinfo[NL80211_RATE_INFO_BITRATE]) {
93 nla_get_u16(rinfo[
  /external/v8/src/arm/
debug-arm.cc 40 return Debug::IsDebugBreakAtReturn(rinfo());
60 CodePatcher patcher(rinfo()->pc(), Assembler::kJSReturnSequenceInstructions);
75 rinfo()->PatchCode(original_rinfo()->pc(),
82 bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
83 ASSERT(RelocInfo::IsJSReturn(rinfo->rmode()));
84 return rinfo->IsPatchedReturnSequence();
91 return rinfo()->IsPatchedDebugBreakSlotSequence();
110 CodePatcher patcher(rinfo()->pc(), Assembler::kDebugBreakSlotInstructions);
124 rinfo()->PatchCode(original_rinfo()->pc(),
assembler-arm.cc     [all...]
  /external/v8/src/ia32/
debug-ia32.cc 42 return Debug::IsDebugBreakAtReturn(rinfo());
53 rinfo()->PatchCodeWithCall(isolate->debug()->debug_break_return()->entry(),
60 rinfo()->PatchCode(original_rinfo()->pc(),
67 bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
68 ASSERT(RelocInfo::IsJSReturn(rinfo->rmode()));
69 return rinfo->IsPatchedReturnSequence();
76 return rinfo()->IsPatchedDebugBreakSlotSequence();
83 rinfo()->PatchCodeWithCall(
91 rinfo()->PatchCode(original_rinfo()->pc(), Assembler::kDebugBreakSlotLength);
  /external/v8/src/mips/
debug-mips.cc 43 return Debug::IsDebugBreakAtReturn(rinfo());
59 CodePatcher patcher(rinfo()->pc(), Assembler::kJSReturnSequenceInstructions);
76 rinfo()->PatchCode(original_rinfo()->pc(),
83 bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
84 ASSERT(RelocInfo::IsJSReturn(rinfo->rmode()));
85 return rinfo->IsPatchedReturnSequence();
92 return rinfo()->IsPatchedDebugBreakSlotSequence();
106 CodePatcher patcher(rinfo()->pc(), Assembler::kDebugBreakSlotInstructions);
115 rinfo()->PatchCode(original_rinfo()->pc(),
  /external/v8/src/x64/
debug-x64.cc 43 return Debug::IsDebugBreakAtReturn(rinfo());
53 rinfo()->PatchCodeWithCall(
61 rinfo()->PatchCode(original_rinfo()->pc(),
68 bool Debug::IsDebugBreakAtReturn(v8::internal::RelocInfo* rinfo) {
69 ASSERT(RelocInfo::IsJSReturn(rinfo->rmode()));
70 return rinfo->IsPatchedReturnSequence();
77 return !Assembler::IsNop(rinfo()->pc());
83 rinfo()->PatchCodeWithCall(
91 rinfo()->PatchCode(original_rinfo()->pc(), Assembler::kDebugBreakSlotLength);
  /external/v8/test/mjsunit/
debug-liveedit-patch-positions-replace.js 35 // Before the change 2 rinfo are 22 characters away from each other. After the
55 // Line long enough to change rinfo encoding.
  /frameworks/base/services/java/com/android/server/
ServiceWatcher.java 174 for (ResolveInfo rInfo : rInfos) {
175 String packageName = rInfo.serviceInfo.packageName;
194 if (rInfo.serviceInfo.metaData != null) {
195 version = rInfo.serviceInfo.metaData.getInt(
197 isMultiuser = rInfo.serviceInfo.metaData.getBoolean(EXTRA_SERVICE_IS_MULTIUSER);
  /packages/apps/Launcher2/src/com/android/launcher2/
InstallWidgetReceiver.java 65 public WidgetMimeTypeHandlerData(ResolveInfo rInfo, AppWidgetProviderInfo wInfo) {
66 resolveInfo = rInfo;
  /frameworks/base/services/java/com/android/server/usb/
UsbSettingsManager.java 697 ResolveInfo rInfo = matches.get(0);
698 if (rInfo.activityInfo != null &&
699 rInfo.activityInfo.applicationInfo != null &&
700 (rInfo.activityInfo.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
701 defaultRI = rInfo;
708 ResolveInfo rInfo = matches.get(i);
709 if (rInfo.activityInfo != null &&
710 defaultPackage.equals(rInfo.activityInfo.packageName)) {
711 defaultRI = rInfo;
742 resolverIntent.putExtra("rinfo", matches.get(0))
    [all...]

Completed in 718 milliseconds

1 2 3