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

1 2

  /packages/apps/Email/tests/src/com/android/exchange/adapter/
ProvisionParserTests.java 49 "<characteristic type=\"HKLM\\Comm\\Security\\Policy\\LASSD\\LAP\\lap_pw\">" +
52 "<characteristic type=\"HKLM\\Comm\\Security\\Policy\\LASSD\\LAP\\lap_pw\">" +
75 "<characteristic type=\"HKLM\\Comm\\Security\\Policy\\LASSD\\LAP\\lap_pw\">" +
78 "<characteristic type=\"HKLM\\Comm\\Security\\Policy\\LASSD\\LAP\\lap_pw\">" +
101 "<characteristic type=\"HKLM\\Comm\\Security\\Policy\\LASSD\\LAP\\lap_pw\">" +
104 "<characteristic type=\"HKLM\\Comm\\Security\\Policy\\LASSD\\LAP\\lap_pw\">" +
  /external/bluetooth/bluez/compat/
dund.c 229 syslog(LOG_INFO, "Searching for %s on %s", mrouter ? "SP" : "LAP", dst);
328 /* FIXME: Should we use non general LAP here ? */
409 "Bluetooth LAP (LAN Access over PPP) daemon version %s\n"
413 "\t--show --list -l Show active LAP connections\n"
414 "\t--listen -s Listen for LAP connections\n"
416 "\t--connect -c <bdaddr> Create LAP connection\n"
419 "\t--kill -k <bdaddr> Kill LAP connection\n"
420 "\t--killall -K Kill all LAP connections\n"
  /external/bluetooth/bluez/plugins/
hciops.c 556 uint8_t lap[] = { 0x33, 0x8b, 0x9e, 0x00, 0x8b, 0x9e }; local
565 if (hci_write_current_iac_lap(dd, num, lap, HCI_REQ_TIMEOUT) < 0) {
567 error("Can't write current IAC LAP: %s(%d)",
597 uint8_t lap[3] = { 0x33, 0x8b, 0x9e }; local
608 memcpy(&cp.lap, lap, 3);
620 memcpy(&inq_cp.lap, lap, 3);
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/
ShortMessage.java 121 * differences in the first lap, from 0 up to 255. From the second lap
124 * i.e. on the last 16 number of 256-lap. And now differences in the
125 * first lap. This method don't throw out exception with value of status
  /frameworks/base/include/utils/
StopWatch.h 38 nsecs_t lap();
  /frameworks/base/libs/utils/
StopWatch.cpp 56 nsecs_t StopWatch::lap() function in class:android::StopWatch
  /external/bluetooth/bluez/include/bluetooth/
hci_lib.h 59 int hci_inquiry(int dev_id, int len, int num_rsp, const uint8_t *lap, inquiry_info **ii, long flags);
82 int hci_read_current_iac_lap(int dd, uint8_t *num_iac, uint8_t *lap, int to);
83 int hci_write_current_iac_lap(int dd, uint8_t num_iac, uint8_t *lap, int to);
hci.h 299 uint8_t lap[3]; member in struct:__anon906
317 uint8_t lap[3]; member in struct:__anon908
935 uint8_t lap[MAX_IAC_LAP][3]; member in struct:__anon983
942 uint8_t lap[MAX_IAC_LAP][3]; member in struct:__anon984
1833 uint8_t lap[3]; member in struct:hci_inquiry_req
    [all...]
  /external/tcpdump/
appletalk.h 26 struct LAP {
print-atalk.c 96 register const struct LAP *lp;
110 lp = (const struct LAP *)bp;
157 printf("%d > %d at-lap#%d %d",
print-udp.c 561 if (TTEST(((struct LAP *)cp)->type) &&
562 ((struct LAP *)cp)->type == lapDDP &&
  /external/bluetooth/bluez/lib/
hci.c 416 { "Read Current IAC LAP", 91 },
417 { "Write Current IAC LAP", 92 },
854 int hci_inquiry(int dev_id, int len, int nrsp, const uint8_t *lap, inquiry_info **ii, long flags)
888 if (lap) {
889 memcpy(ir->lap, lap, 3);
891 ir->lap[0] = 0x33;
892 ir->lap[1] = 0x8b;
893 ir->lap[2] = 0x9e;
    [all...]
  /external/bluetooth/bluez/tools/
hcitool.c 411 "\t [--iac=lap] specify the inquiry access code\n"
417 uint8_t lap[3] = { 0x33, 0x8b, 0x9e }; local
446 lap[0] = (l & 0xff);
447 lap[1] = (l >> 8) & 0xff;
448 lap[2] = (l >> 16) & 0xff;
463 num_rsp = hci_inquiry(dev_id, length, num_rsp, lap, &info, flags);
500 "\tscan [--length=N] [--numrsp=N] [--iac=lap] [--flush] [--class] [--info] [--oui] [--refresh]\n";
505 uint8_t lap[3] = { 0x33, 0x8b, 0x9e }; local
540 lap[0] = (l & 0xff);
541 lap[1] = (l >> 8) & 0xff
972 uint8_t lap[3] = { 0x33, 0x8b, 0x9e }; local
    [all...]
hciconfig.c 163 uint8_t lap[3]; local
172 lap[0] = (l & 0xff);
173 lap[1] = (l >> 8) & 0xff;
174 lap[2] = (l >> 16) & 0xff;
175 if (hci_write_current_iac_lap(s, 1, lap, 1000) < 0) {
180 uint8_t lap[3 * MAX_IAC_LAP]; local
183 if (hci_read_current_iac_lap(s, &n, lap, 1000) < 0) {
192 printf("%02x", lap[j + 3 * i]);
    [all...]
  /external/bluetooth/hcidump/parser/
hci.c 257 "Read Current IAC LAP",
258 "Write Current IAC LAP",
694 printf("lap 0x%2.2x%2.2x%2.2x len %d num %d\n",
695 cp->lap[2], cp->lap[1], cp->lap[0], cp->length, cp->num_rsp);
703 printf("max %d min %d lap 0x%2.2x%2.2x%2.2x len %d num %d\n",
705 cp->lap[2], cp->lap[1], cp->lap[0], cp->length, cp->num_rsp)
    [all...]
  /frameworks/base/docs/html/resources/articles/
timed-ui-updates.jd 22 Java Swing and SE application. It is like a stopwatch with a lap timer
  /external/qemu/hw/
bt.h 448 uint8_t lap[3]; member in struct:__anon4571
466 uint8_t lap[3]; member in struct:__anon4573
1079 uint8_t lap[MAX_IAC_LAP][3]; member in struct:__anon4649
1086 uint8_t lap[MAX_IAC_LAP][3]; member in struct:__anon4650
    [all...]
  /bionic/libc/include/net/
if_types.h 163 #define IFT_LAPF 0x77 /* LAP F */
  /frameworks/base/core/res/res/values-lt-rLT/
donottranslate-cldr.xml 40 <string name="month_medium_november">lap.</string>
  /ndk/build/platforms/android-3/arch-arm/usr/include/net/
if_types.h 163 #define IFT_LAPF 0x77 /* LAP F */
  /ndk/build/platforms/android-4/arch-arm/usr/include/net/
if_types.h 163 #define IFT_LAPF 0x77 /* LAP F */
  /ndk/build/platforms/android-5/arch-arm/usr/include/net/
if_types.h 163 #define IFT_LAPF 0x77 /* LAP F */
  /ndk/build/platforms/android-5/arch-x86/usr/include/net/
if_types.h 163 #define IFT_LAPF 0x77 /* LAP F */
  /ndk/build/platforms/android-8/arch-arm/usr/include/net/
if_types.h 163 #define IFT_LAPF 0x77 /* LAP F */
  /ndk/build/platforms/android-8/arch-x86/usr/include/net/
if_types.h 163 #define IFT_LAPF 0x77 /* LAP F */

Completed in 185 milliseconds

1 2