HomeSort by relevance Sort by last modified time
    Searched refs:wl (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /cts/tests/tests/net/src/android/net/wifi/cts/
WifiManager_WifiLockTest.java 34 WifiLock wl = wm.createWifiLock(WIFI_TAG); local
36 wl.setReferenceCounted(true);
37 assertFalse(wl.isHeld());
38 wl.acquire();
39 assertTrue(wl.isHeld());
40 wl.release();
41 assertFalse(wl.isHeld());
42 wl.acquire();
43 wl.acquire();
44 assertTrue(wl.isHeld())
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
PowerManager_WakeLockTest.java 35 WakeLock wl = pm.newWakeLock(PowerManager.SCREEN_BRIGHT_WAKE_LOCK, TAG); local
36 assertNotNull(wl.toString());
38 wl.acquire();
39 assertTrue(wl.isHeld());
40 wl.release();
41 assertFalse(wl.isHeld());
44 wl.setReferenceCounted(true);
45 wl.acquire();
46 assertTrue(wl.isHeld());
47 wl.acquire()
    [all...]
PowerManagerTest.java 39 WakeLock wl = pm.newWakeLock(PowerManager.SCREEN_BRIGHT_WAKE_LOCK, TAG); local
40 wl.acquire(TIME);
41 assertTrue(wl.isHeld());
43 assertFalse(wl.isHeld());
  /frameworks/base/core/tests/coretests/src/android/os/
PowerManagerTest.java 53 PowerManager.WakeLock wl = mPm.newWakeLock(PowerManager.FULL_WAKE_LOCK, "FULL_WAKE_LOCK"); local
54 doTestWakeLock(wl);
56 wl = mPm.newWakeLock(PowerManager.SCREEN_BRIGHT_WAKE_LOCK, "SCREEN_BRIGHT_WAKE_LOCK");
57 doTestWakeLock(wl);
59 wl = mPm.newWakeLock(PowerManager.SCREEN_DIM_WAKE_LOCK, "SCREEN_DIM_WAKE_LOCK");
60 doTestWakeLock(wl);
62 wl = mPm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "PARTIAL_WAKE_LOCK");
63 doTestWakeLock(wl);
83 PowerManager.WakeLock wl = mPm.newWakeLock(badFlags, "foo"); local
93 * @param wl The wakelock to be tested
    [all...]
  /frameworks/support/v4/java/android/support/v4/content/
WakefulBroadcastReceiver.java 95 PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, local
97 wl.setReferenceCounted(false);
98 wl.acquire(60*1000);
99 mActiveWakeLocks.put(id, wl);
118 PowerManager.WakeLock wl = mActiveWakeLocks.get(id); local
119 if (wl != null) {
120 wl.release();
  /external/openssl/crypto/ripemd/asm/
rmd-586.pl 32 @wl=( 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15,
349 &RIP1($A,$B,$C,$D,$E,$wl[ 0],$sl[ 0],-1);
350 &RIP1($E,$A,$B,$C,$D,$wl[ 1],$sl[ 1],0);
351 &RIP1($D,$E,$A,$B,$C,$wl[ 2],$sl[ 2],0);
352 &RIP1($C,$D,$E,$A,$B,$wl[ 3],$sl[ 3],0);
353 &RIP1($B,$C,$D,$E,$A,$wl[ 4],$sl[ 4],0);
354 &RIP1($A,$B,$C,$D,$E,$wl[ 5],$sl[ 5],0);
355 &RIP1($E,$A,$B,$C,$D,$wl[ 6],$sl[ 6],0);
356 &RIP1($D,$E,$A,$B,$C,$wl[ 7],$sl[ 7],0);
357 &RIP1($C,$D,$E,$A,$B,$wl[ 8],$sl[ 8],0)
    [all...]
  /external/srec/srec/include/
word_lattice.h 50 void destroy_word_lattice(srec_word_lattice* wl);
51 void initialize_word_lattice(srec_word_lattice* wl);
52 void lattice_add_word_tokens(srec_word_lattice *wl, frameID frame,
54 costdata lattice_best_cost_to_frame(srec_word_lattice *wl, word_token* word_token_array, frameID ifr);
  /external/srec/srec/crec/
word_lattice.c 56 srec_word_lattice *wl; local
58 wl = (srec_word_lattice*) CALLOC_CLR(1, sizeof(srec_word_lattice), "search.word_lattice.base");
59 wl->max_frames = max_frames;
60 wl->words_for_frame = (wtokenID*) CALLOC_CLR(max_frames, sizeof(wtokenID), "search.word_lattice.words");
62 wl->whether_sorted = (asr_int16_t*)CALLOC_CLR(max_frames, sizeof(asr_int16_t), "search.word_lattice.sflag");
64 return wl;
67 void destroy_word_lattice(srec_word_lattice* wl)
69 FREE(wl->words_for_frame);
70 FREE(wl->whether_sorted);
71 FREE(wl);
354 srec_word_lattice *wl; local
413 srec_word_lattice* wl; local
449 srec_word_lattice* wl; local
490 srec_word_lattice* wl; local
536 srec_word_lattice* wl = rec->word_lattice; local
    [all...]
  /external/libffi/
ltcf-cxx.sh 81 archive_cmds='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
82 archive_expsym_cmds='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
84 hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir'
85 export_dynamic_flag_spec='${wl}--export-dynamic'
90 wlarc='${wl}'
    [all...]
ltcf-c.sh 56 wlarc='${wl}'
95 archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
171 $CC -Wl,--base-file,$output_objdir/$soname-base '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags~
173 $CC -Wl,--base-file,$output_objdir/$soname-base $output_objdir/$soname-exp '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags~
175 $CC $output_objdir/$soname-exp '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags'
183 archive_cmds='$CC -shared -nodefaultlibs $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib
    [all...]
  /external/bison/build-aux/
config.rpath 52 wl=
54 wl='-Wl,'
58 wl='-Wl,'
63 wl='-Wl,'
66 wl='-Wl,'
71 wl='-Wl,
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmInitReceiver.java 43 final WakeLock wl = AlarmAlertWakeLock.createPartialWakeLock(context); local
44 wl.acquire();
68 wl.release();
AlarmReceiver.java 43 final WakeLock wl = AlarmAlertWakeLock.createPartialWakeLock(context); local
44 wl.acquire();
49 wl.release();
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
dhdu_linux.c 2 * Linux port of dhd command line utility, hacked from wl utility.
150 /* By default try to execute wl commands */
155 * execute wl commands.
178 * the initial set of wl commands for wifi transport (e.g slow_timer, fast_timer etc)
180 int wl_ioctl(void *wl, int cmd, void *buf, int len, bool set)
182 return dhd_ioctl(wl, cmd, buf, len, set); /* Call actual wl_ioctl here: Shubhro */
185 /* Search if dhd adapter or wl adapter is present
186 * This is called by dhd_find to check if it supports wl or dhd
187 * The reason for checking wl adapter is that we can still send remote dhd commands over
225 * So we make use of wl pipes to execute this
    [all...]
dhdu_common.h 2 * Linux port of dhd command line utility, hacked from wl utility.
64 extern int wl_get(void *wl, int cmd, void *buf, int len);
65 extern int wl_set(void *wl, int cmd, void *buf, int len);
ucode_download.c 33 dload_generic_data(void *wl, uint16 dload_type, unsigned char *dload_buf, int len)
52 err = wlu_iovar_setbuf(wl, "generic_dload", dload_buf, len, buf,
60 dload_ucode_part(void *wl, uint8 ucode_type, uint32 datalen, unsigned char *org_buf)
71 err = wlu_iovar_getint(wl, "ucdload_chunk_len",
99 err = dload_generic_data(wl, DL_TYPE_UCODE, new_buf, size2alloc);
207 /* in USB after dongle fw starts running wl interface
224 /* Number of 'wl' interfaces to skip
253 printf("wl device is not present\n");
  /external/qemu/distrib/sdl-1.2.15/acinclude/
libtool.m4 922 -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD
924 -dynamiclib -Wl,-single_module conftest.c 2>conftest.err
939 LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym"
947 _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;;
949 _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
956 _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
config.rpath 52 wl=
54 wl='-Wl,'
58 wl='-Wl,'
63 wl='-Wl,'
70 wl='-Wl,'
73 wl='-Wl,
    [all...]
  /external/e2fsprogs/config/
config.rpath 47 wl=
49 wl='-Wl,'
53 wl='-Wl,'
56 wl='-Wl,'
59 wl='-Wl,'
68 wl='-Qoption,ld,
    [all...]
  /ndk/sources/host-tools/make-3.81/config/
config.rpath 55 wl=
57 wl='-Wl,'
61 wl='-Wl,'
66 wl='-Wl,'
69 wl='-Wl,'
76 wl='-Wl,
    [all...]
  /external/jpeg/
ansi2knr.c 384 goto wl;
386 goto wl;
413 wl: fputs(buf, out);
  /external/qemu/distrib/jpeg-6b/
ansi2knr.c 384 goto wl;
386 goto wl;
413 wl: fputs(buf, out);
  /external/icu4c/test/perf/ustrperf/
stringperf.h 246 int32_t wl; local
252 wcs = u_strToWCS(ws, wcap, &wl, lines_[i].name, lines_[i].len, &err);
253 memcpy(wlines_[i].name, wcs, wl * sizeof(wchar_t));
254 wlines_[i].len = wl;
257 wcs = u_strToWCS(ws, wcap, &wl, lines_[i].name, lines_[i].len-1, &err);
258 memcpy(wlines_[i].name, wcs, wl*sizeof(wchar_t));
259 wlines_[i].len = wl;
  /ndk/sources/host-tools/make-3.81/
ansi2knr.c 321 goto wl;
323 goto wl;
350 wl: fputs(buf, out);
  /external/clang/test/CodeGenCXX/
cxx0x-initializer-stdinitializerlist.cpp 150 wantslist1 wl = { destroyme1(), destroyme1() }; local

Completed in 1302 milliseconds

1 2 3 4