Searched refs:wanted (Results 1 - 25 of 34) sorted by relevance

12

/external/webkit/Tools/Scripts/
H A Ddo-file-rename46 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
H A Ddo-webcore-rename72 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
H A Dfind-extra-includes34 find(\&wanted, @ARGV ? @ARGV : ".");
39 sub wanted subroutine
H A Dmake-script-test-wrappers84 find({ preprocess => \&directoryFilter, wanted => $fileFilter }, $templateDirectory);
138 find({ preprocess => \&directoryFilter, wanted => $fileFilter }, @paths);
H A Dreport-include-statistics34 find(\&wanted, @ARGV ? @ARGV : ".");
40 sub wanted subroutine
H A Dupdate-webkit-dependency114 sub wanted subroutine
127 File::Find::find(\&wanted, "$tmpAbsDir/$file");
H A Dupdate-webkit-support-libs79 sub wanted subroutine
92 File::Find::find(\&wanted, "$tmpAbsDir/$file");
/external/qemu/android/
H A Dlooper-qemu.c130 unsigned wanted; member in struct:QLoopIo
148 io->wanted = 0;
194 qloopio_modify(QLoopIo* io, unsigned wanted) argument
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...]
H A Dlooper-generic.c150 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) argument
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
[all...]
/external/qemu/
H A Dosdep.c194 int wanted = vsnprintf( *sptr = NULL, 0, fmt, argv ); local
195 if( (wanted > 0) && ((*sptr = malloc( 1 + wanted )) != NULL) )
198 return wanted;
/external/bison/m4/
H A Ddmalloc.m49 [AC_MSG_CHECKING([if malloc debugging is wanted])
/external/ppp/pppd/plugins/pppoatm/
H A Dans.c41 static int ans(const char *text,int wanted,void *result,int res_len) argument
50 if ((answer_len = res_search(text,C_IN,wanted,answer,MAX_ANSWER)) < 0)
68 if (GET16(pos) != wanted || GET16(pos+2) != C_IN) return TRY_OTHER;
86 if (GET16(data-10) != wanted || GET16(data-8) != C_IN || !--data_len)
88 switch (wanted) {
/external/llvm/utils/
H A DUpdateCMakeLists.pl116 find({ wanted => \&ProcessFile, follow => 1 }, '.');
/external/e2fsprogs/lib/ext2fs/
H A Dfileio.c209 unsigned int wanted, unsigned int *got)
220 while ((file->pos < EXT2_I_SIZE(&file->inode)) && (wanted > 0)) {
230 if (c > wanted)
231 c = wanted;
240 wanted -= c;
208 ext2fs_file_read(ext2_file_t file, void *buf, unsigned int wanted, unsigned int *got) argument
/external/qemu/hw/
H A Dgoldfish_pipe.c138 unsigned char wanted; member in struct:Pipe
235 qemu_put_byte(file, (int)pipe->wanted);
275 pipe->wanted = qemu_get_byte(file);
1054 if ((pipe->wanted & PIPE_WAKE_READ) == 0) {
1055 pipe->wanted |= PIPE_WAKE_READ;
1056 pipe->funcs->wakeOn(pipe->opaque, pipe->wanted);
1063 if ((pipe->wanted & PIPE_WAKE_WRITE) == 0) {
1064 pipe->wanted |= PIPE_WAKE_WRITE;
1065 pipe->funcs->wakeOn(pipe->opaque, pipe->wanted);
1156 DR("%s: channel=0x%x wanted
[all...]
/external/qemu/telephony/
H A Dsysdeps_posix.c91 int wanted; member in struct:SysChannelRec_
115 channel->wanted = 0;
131 channel->wanted = 0;
204 int adds = events & ~channel->wanted;
205 int removes = channel->wanted & ~events;
207 channel->wanted = events;
/external/quake/quake/src/QW/
H A Dqwcl.spec.sh33 wanted to, but couldn't due to the play being unsatisfactory, John Carmack
H A Dqwsv.spec.sh33 wanted to, but couldn't due to the play being unsatisfactory, John Carmack
/external/qemu/proxy/
H A Dproxy_int.h141 /* try to read 'wanted' bytes into conn->str from a socket
150 proxy_connection_receive( ProxyConnection* conn, int fd, int wanted );
H A Dproxy_common.c159 proxy_connection_receive( ProxyConnection* conn, int fd, int wanted )
165 while (wanted > 0) {
168 stralloc_readyplus( str, wanted );
169 n = socket_recv(fd, str->s + str->n, wanted);
189 wanted -= n;
H A Dproxy_http_rewriter.c707 int wanted = 0, current, avail; local
726 wanted = MAX_BODY_BUFFER;
728 wanted = (int)conn->body_length;
733 wanted = MAX_BODY_BUFFER;
819 wanted = MAX_BODY_BUFFER;
821 wanted = (int)conn->chunk_length;
840 if (wanted > avail)
841 wanted = avail;
843 ret = proxy_connection_receive(root, fd, wanted);
/external/qemu/android/skin/
H A Dregion.c807 region_operator_do( RegionOperator* o, int wanted )
830 if (wanted & FLAG_REGION_1)
838 if (wanted & FLAG_REGION_2)
846 if (wanted & FLAG_REGION_1)
851 if (wanted & FLAG_REGION_2)
881 if (wanted & FLAG_REGION_1)
889 if (wanted & FLAG_REGION_2)
897 if (wanted & FLAG_REGION_1)
903 if (wanted & FLAG_REGION_2)
910 if (wanted
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DSerializationStressTest5.java294 String[] wanted = { "java" + slash + "io", "java" + slash + "lang",
350 for (int j = 0; j < wanted.length; j++) {
351 if (zeName.startsWith(wanted[j])) {
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DFloatTest.java853 Float wanted = new Float(432.1235f);
855 assertTrue("Incorrect float returned--wanted: " + wanted + " but got: " + got, got
856 .equals(wanted));
858 wanted = new Float(0f);
860 assertTrue("Incorrect float returned--wanted: " + wanted + " but got: " + got, got
861 .equals(wanted));
863 wanted = new Float(-1212.3232f);
865 assertTrue("Incorrect float returned--wanted
[all...]
/external/libvpx/examples/includes/geshi/geshi/
H A Dhaskell.php177 /* link to the wanted library */

Completed in 437 milliseconds

12