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

1 2

  /development/samples/ApiDemos/src/com/example/android/apis/os/
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);
  /external/bluetooth/bluez/tools/
hcieventmask.c 46 struct hci_dev_info di; local
69 if (hci_devinfo(dev, &di) < 0) {
86 if (di.features[5] & LMP_SNIFF_SUBR)
89 if (di.features[5] & LMP_PAUSE_ENC)
92 if (di.features[6] & LMP_EXT_INQ)
95 if (di.features[6] & LMP_NFLUSH_PKTS)
98 if (di.features[7] & LMP_LSTO)
101 if (di.features[6] & LMP_SIMPLE_PAIR) {
csr_hci.c 45 struct hci_dev_info di; local
64 if (hci_devinfo(dev, &di) < 0) {
ciptool.c 134 struct hci_dev_info di; local
140 hci_devinfo(dev_id, &di);
141 if (!(di.link_policy & HCI_LP_RSWITCH)) {
main.c 108 static void print_dev_info(struct rfcomm_dev_info *di)
112 ba2str(&di->src, src); ba2str(&di->dst, dst);
114 if (bacmp(&di->src, BDADDR_ANY) == 0)
120 di->id, addr, di->channel,
121 rfcomm_state[di->state],
122 di->flags ? rfcomm_flagstostr(di->flags) : "");
128 struct rfcomm_dev_info *di; local
240 struct rfcomm_dev_info *di; local
676 struct rfcomm_dev_info di = { id: atoi(argv[0]) }; local
    [all...]
  /bionic/libm/src/
e_jn.c 58 double a, b, temp, di; local
182 for(i=n-1,di=(double)(i+i);i>0;i--){
184 b *= di;
187 di -= two;
190 for(i=n-1,di=(double)(i+i);i>0;i--){
192 b *= di;
195 di -= two;
e_jnf.c 34 float a, b, temp, di; local
135 for(i=n-1,di=(float)(i+i);i>0;i--){
137 b *= di;
140 di -= two;
143 for(i=n-1,di=(float)(i+i);i>0;i--){
145 b *= di;
148 di -= two;
  /external/bluetooth/hcidump/src/
csrsniff.c 157 struct hci_dev_info di; local
204 if (hci_devinfo(dev, &di) < 0) {
225 if (!bacmp(&di.bdaddr, BDADDR_ANY)) {
233 bacpy(&bdaddr, &di.bdaddr);
235 need_raw = !hci_test_bit(HCI_RAW, &di.flags);
bpasniff.c 362 struct hci_dev_info di; local
409 if (hci_devinfo(dev, &di) < 0) {
hcidump.c 560 struct hci_dev_info di; local
570 if (hci_devinfo(dev, &di) < 0) {
575 opt = hci_test_bit(HCI_RAW, &di.flags);
  /external/fdlibm/
e_jn.c 61 double a, b, temp, di; local
186 for(i=n-1,di=(double)(i+i);i>0;i--){
188 b *= di;
191 di -= two;
194 for(i=n-1,di=(double)(i+i);i>0;i--){
196 b *= di;
199 di -= two;
  /external/bluetooth/bluez/compat/
dun.c 58 struct rfcomm_dev_info *di; local
68 dl = malloc(sizeof(*dl) + RFCOMM_MAX_DEV * sizeof(*di));
76 di = dl->dev_info;
84 r = func(di + i, arg);
244 static int show_conn(struct rfcomm_dev_info *di, unsigned long arg)
248 if (di->state == BT_CONNECTED &&
249 (di->flags & (1<<RFCOMM_REUSE_DLC)) &&
250 (di->flags & (1<<RFCOMM_TTY_ATTACHED)) &&
251 (di->flags & (1<<RFCOMM_RELEASE_ONHUP))) {
253 if (find_pppd(di->id, &pid))
    [all...]
  /external/libgsm/src/
short_term.c 202 register word di, zzz, ui, sav, rpi; local
207 di = sav = *s;
215 zzz = GSM_MULT_R(rpi, di);
219 di = GSM_ADD( di, zzz );
222 *s = di;
242 register float sav, di, temp; local
249 sav = di = *s;
255 temp = rpfi * di + ufi;
256 di += rpfi * ufi
    [all...]
  /system/core/libacc/tests/
main.cpp 70 disasm_interface_t di; local
71 di.di_readword = disassemble_readword;
72 di.di_printaddr = disassemble_printaddr;
73 di.di_printf = disassemble_printf;
84 ::disasm(&di, (uint) pInstruction, 0);
  /dalvik/tests/068-classloader/src/
Main.java 349 System.out.println("Got LinkageError on DI (early)");
361 static void useImplement(DoubledImplement di, boolean isOne) {
362 //System.out.println("useObject: " + di.toString() + " -- "
363 // + di.getClass().getClassLoader());
365 di.one();
367 System.err.println("ERROR: did not get LinkageError on DI");
371 System.out.println("Got LinkageError on DI (late)");
  /external/bluetooth/bluez/plugins/
hciops.c 81 struct hci_dev_info di; local
85 if (hci_devinfo(index, &di) < 0)
88 if (hci_test_bit(HCI_RAW, &di.flags))
125 struct hci_dev_info di; local
178 if (hci_devinfo(index, &di) < 0)
181 if (hci_test_bit(HCI_RAW, &di.flags))
195 struct hci_dev_info di; local
200 memset(&di, 0, sizeof(di));
202 if (hci_devinfo(index, &di) < 0
613 struct hci_dev_info di; local
    [all...]
  /external/bluetooth/bluez/test/
bdaddr.c 318 struct hci_dev_info di; local
362 if (hci_devinfo(dev, &di) < 0) {
376 if (!bacmp(&di.bdaddr, BDADDR_ANY)) {
384 bacpy(&bdaddr, &di.bdaddr);
  /external/quake/quake/src/WinQuake/
dosisms.h 43 unsigned short di, di_hi; member in struct:__anon6829::__anon6831
  /external/webkit/WebKitTools/WinLauncher/
WinLauncher.cpp 319 static void initDocStruct(DOCINFO* di, TCHAR* docname)
321 memset(di, 0, sizeof(DOCINFO));
322 di->cbSize = sizeof(DOCINFO);
323 di->lpszDocName = docname;
352 DOCINFO di; local
353 initDocStruct(&di, _T("WebKit Doc"));
354 ::StartDoc(printDC, &di);
  /external/e2fsprogs/e2fsck/
pass1b.c 123 struct dup_inode *di; local
146 di = (struct dup_inode *) dnode_get(n);
148 di = (struct dup_inode *) e2fsck_allocate_memory(ctx,
151 di->dir = EXT2_ROOT_INO;
154 di->dir = 0;
156 di->num_dupblocks = 0;
157 di->block_list = 0;
158 di->inode = *inode;
159 dict_alloc_insert(&ino_dict, INT_TO_VOIDPTR(ino), di);
164 blk_el->next = di->block_list
175 struct dup_inode *di; local
720 struct dup_inode *di; local
    [all...]
  /libcore/luni/src/main/native/
NativeBN.cpp 208 BN_ULONG di; local
216 di = BYTES2INT(bytes, k);
217 if (di != 0) {
218 d[i] = -di;
233 di = -1;
237 di = (di << 8) | (bytes[k] & 0xFF);
239 d[i] = ~di;
242 di = (di << 8) | (bytes[k] & 0xFF)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
RopTranslator.java 539 DalvInsn di; local
545 di = new SimpleInsn(opcode, pos, getRegs(insn));
558 di = new TargetInsn(opcode, pos, getRegs(insn),
567 addOutput(di);
576 DalvInsn di; local
595 di = new SimpleInsn(opcode, pos,
597 addOutput(di);
602 di = new CstInsn(opcode, pos, regs, insn.getConstant());
603 addOutput(di);
693 DalvInsn di = new CstInsn(opcode, pos, regs, cst) local
700 DalvInsn di; local
751 DalvInsn di = new SimpleInsn(opcode, pos, local
    [all...]
  /external/bluetooth/bluez/src/
security.c 966 struct hci_dev_info *di = data; local
995 ioctl(dev, HCIGETDEVINFO, (void *) di);
997 if (hci_test_bit(HCI_RAW, &di->flags))
1002 cmd_status(dev, &di->bdaddr, ptr);
1006 cmd_complete(dev, &di->bdaddr, ptr);
1010 remote_name_information(dev, &di->bdaddr, ptr);
1014 remote_version_information(dev, &di->bdaddr, ptr);
1018 remote_features_information(dev, &di->bdaddr, ptr);
1022 remote_features_notify(dev, &di->bdaddr, ptr);
1027 inquiry_complete(&di->bdaddr, evt->status, FALSE)
1114 struct hci_dev_info *di; local
    [all...]
  /external/chromium/third_party/icu/source/common/
rbbitblb.cpp 957 int32_t di = 0 local
    [all...]
  /external/chromium/third_party/icu/source/i18n/
uregex.cpp 1218 int32_t di = *destIndex; local
    [all...]

Completed in 1835 milliseconds

1 2