HomeSort by relevance Sort by last modified time
    Searched defs:di (Results 1 - 25 of 212) sorted by null

1 2 3 4 5 6 7 8 9

  /frameworks/base/libs/hwui/tests/unit/
DeviceInfoTests.cpp 28 const DeviceInfo* di = DeviceInfo::get(); local
29 ASSERT_NE(nullptr, di) << "DeviceInfo initialization failed";
30 EXPECT_EQ(2048, di->maxTextureSize()) << "Max texture size didn't match";
  /external/libunwind/src/mi/
Gfind_dynamic_proc_info.c 44 unw_dyn_info_t *di; local
53 for (di = list->first; di; di = di->next)
54 if (ip >= di->start_ip && ip < di->end_ip)
55 return unwi_extract_dynamic_proc_info (as, ip, pi, di, need_unwind_info,
Gget_proc_name.c 61 unw_dyn_info_t *di = pi.unwind_info; local
66 switch (di->format)
69 ret = intern_string (as, a, di->u.pi.name_ptr, buf, buf_len, arg);
Gdyn-remote.c 127 free_dyn_info (unw_dyn_info_t *di)
129 switch (di->format)
132 if (di->u.pi.regions)
134 free_regions (di->u.pi.regions);
135 di->u.pi.regions = NULL;
140 if (di->u.ti.table_data)
142 free (di->u.ti.table_data);
143 di->u.ti.table_data = NULL;
155 unw_word_t *addr, unw_dyn_info_t *di, void *arg)
160 switch (di->format
210 unw_dyn_info_t *di = NULL; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MmsWapPushReceiver.java 59 final Intent di = new Intent(); local
60 di.setClass(context, MmsMessagingDemo.class);
61 di.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP);
62 di.putExtra(MmsMessagingDemo.EXTRA_NOTIFICATION_URL, location);
63 context.startActivity(di);
SmsMessageReceiver.java 66 Intent di = new Intent(); local
67 di.setClass(context, SmsReceivedDialog.class);
68 di.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP);
69 di.putExtra(SmsReceivedDialog.SMS_FROM_ADDRESS_EXTRA, fromAddress);
70 di.putExtra(SmsReceivedDialog.SMS_FROM_DISPLAY_NAME_EXTRA, fromDisplayName);
71 di.putExtra(SmsReceivedDialog.SMS_MESSAGE_EXTRA, message.getMessageBody().toString());
72 context.startActivity(di);
  /packages/apps/BasicSmsReceiver/src/com/android/basicsmsreceiver/
SmsMessageReceiver.java 76 Intent di = new Intent(); local
77 di.setClass(context, DialogSmsDisplay.class);
78 di.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP |
80 di.putExtra(DialogSmsDisplay.SMS_FROM_ADDRESS_EXTRA, fromAddress);
81 di.putExtra(DialogSmsDisplay.SMS_MESSAGE_EXTRA, message);
82 di.putExtra(DialogSmsDisplay.SMS_NOTIFICATION_ID_EXTRA, notificationId);
87 di.setType(Integer.toString(notificationId));
89 PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, di, 0);
  /external/libvpx/libvpx/test/
vp8_decrypt_test.cc 62 vpx_decrypt_init di = { test_decrypt_cb, &encrypted[0] }; local
63 decoder.Control(VPXD_SET_DECRYPTOR, &di);
vp9_decrypt_test.cc 62 vpx_decrypt_init di = { test_decrypt_cb, &encrypted[0] }; local
63 decoder.Control(VPXD_SET_DECRYPTOR, &di);