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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/052-verifier-fun/src/
Main.java 19 static Object[] arrayCheck1(int wanted) {
26 switch (wanted) {
33 static Object arrayCheck1b(int wanted) {
42 switch (wanted) {
50 static Object[] arrayCheck2(int wanted) {
59 switch (wanted) {
67 static Object[] arrayCheck3(int wanted) {
74 switch (wanted) {
  /external/qemu/distrib/sdl-1.2.15/docs/html/
guideaudioexamples.html 92 > SDL_AudioSpec wanted;
96 wanted.freq = 22050;
97 wanted.format = AUDIO_S16;
98 wanted.channels = 2; /* 1 = mono, 2 = stereo */
99 wanted.samples = 1024; /* Good low-latency value for callback */
100 wanted.callback = fill_audio;
101 wanted.userdata = NULL;
104 if ( SDL_OpenAudio(&wanted, NULL) < 0 ) {
  /external/qemu/android/
looper-qemu.c 130 unsigned wanted; member in struct:QLoopIo
148 io->wanted = 0;
194 qloopio_modify(QLoopIo* io, unsigned wanted)
197 if (wanted == io->wanted)
202 if (io->ready && (io->ready & wanted) == 0) {
207 IOHandler* fd_read = (wanted & LOOP_IO_READ) ? qloopio_handleRead : NULL;
208 IOHandler* fd_write = (wanted & LOOP_IO_WRITE) ? qloopio_handleWrite : NULL;
210 io->wanted = wanted;
    [all...]
looper-generic.c 150 unsigned wanted; member in struct:GLoopIo
160 /* used to indicate that the set of wanted flags has changed */
162 gloopio_modify(GLoopIo* io, unsigned wanted)
165 if (io->wanted == wanted)
170 if (io->ready != 0 && (io->ready & wanted) == 0) {
173 io->ready &= wanted;
174 glooper_modifyFd(io->looper, io->fd, io->wanted, wanted);
175 io->wanted = wanted
    [all...]
  /external/webkit/Tools/Scripts/
do-file-rename 46 find(\&wanted, "Source/JavaScriptCore");
47 find(\&wanted, "Source/JavaScriptGlue");
48 find(\&wanted, "Source/WebCore");
49 find(\&wanted, "WebKit");
50 find(\&wanted, "Source/WebKit2");
52 sub wanted subroutine
do-webcore-rename 72 find(\&wanted, "Source/JavaScriptCore");
73 find(\&wanted, "Source/JavaScriptGlue");
74 find(\&wanted, "Source/WebCore");
75 find(\&wanted, "Source/WebKit");
76 find(\&wanted, "Source/WebKit2");
77 find(\&wanted, "Tools/DumpRenderTree");
79 sub wanted subroutine
  /frameworks/compile/libbcc/bcinfo/Wrap/
in_memory_wrapper_input.cpp 29 size_t InMemoryWrapperInput::Read(uint8_t* buffer, size_t wanted) {
36 while (found < wanted) {
file_wrapper_input.cpp 35 size_t FileWrapperInput::Read(uint8_t* buffer, size_t wanted) {
36 size_t found = fread((char*) buffer, 1, wanted, _file);
  /external/bison/m4/
dmalloc.m4 9 [AC_MSG_CHECKING([if malloc debugging is wanted])
  /external/clang/test/CodeGen/
complex-indirect.c 4 // Make sure this doesn't crash. We used to generate a byval here and wanted to
  /external/dnsmasq/contrib/try-all-ns/
README 11 to use that. But I wanted it to try requests in order and treat NXDOMAIN
  /external/icu4c/config/
gmakever.mk 27 @echo "$(MAKE_VERSION) (we wanted at least $(at_least))"
  /external/kernel-headers/original/linux/
capi.h 39 #define CAPI_GET_MANUFACTURER _IOWR('C',0x06,int) /* broken: wanted size 64 (CAPI_MANUFACTURER_LEN) */
59 #define CAPI_GET_SERIAL _IOWR('C',0x08,int) /* broken: wanted size 8 (CAPI_SERIAL_LEN) */
  /external/mesa3d/docs/
helpwanted.html 3 <TITLE>Help Wanted</TITLE>
9 <H1>Help Wanted / To-Do List</H1>
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_SingleByte_x_IBM874.java 23 // charsetName = "x-IBM874"; // ICU name "TIS-620", wanted Android name "CP874"
24 charsetName = "TIS-620"; // ICU name "TIS-620", wanted Android name "CP874"
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
capi.h 37 #define CAPI_GET_MANUFACTURER _IOWR('C',0x06,int) /* broken: wanted size 64 (CAPI_MANUFACTURER_LEN) */
57 #define CAPI_GET_SERIAL _IOWR('C',0x08,int) /* broken: wanted size 8 (CAPI_SERIAL_LEN) */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
capi.h 37 #define CAPI_GET_MANUFACTURER _IOWR('C',0x06,int) /* broken: wanted size 64 (CAPI_MANUFACTURER_LEN) */
57 #define CAPI_GET_SERIAL _IOWR('C',0x08,int) /* broken: wanted size 8 (CAPI_SERIAL_LEN) */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
capi.h 37 #define CAPI_GET_MANUFACTURER _IOWR('C',0x06,int) /* broken: wanted size 64 (CAPI_MANUFACTURER_LEN) */
57 #define CAPI_GET_SERIAL _IOWR('C',0x08,int) /* broken: wanted size 8 (CAPI_SERIAL_LEN) */
  /development/samples/ApiDemos/res/xml/
advanced_preferences.xml 23 portion of the preference, if the whole preference wanted to be
  /external/elfutils/
config.h 13 /* Define to 32 or 64 if a specific implementation is wanted. */
config.h.in 12 /* Define to 32 or 64 if a specific implementation is wanted. */
  /external/proguard/examples/
retrace.pro 19 # If we wanted to reuse the previously obfuscated proguard_out.jar, we could
  /external/qemu/
osdep.c 194 int wanted = vsnprintf( *sptr = NULL, 0, fmt, argv ); local
195 if( (wanted > 0) && ((*sptr = malloc( 1 + wanted )) != NULL) )
198 return wanted;
  /libcore/support/src/test/java/tests/support/
Support_ASimpleInputStream.java 22 // Set to true when exception is wanted:
Support_ASimpleReader.java 22 // Set to true when exception is wanted:

Completed in 2302 milliseconds

1 2 3 4 5 6 7 8 91011>>