Searched defs:wanted (Results 1 - 15 of 15) sorted by relevance

/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 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/
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/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/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/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/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/e2fsprogs/misc/
H A Dfsck.c870 int wanted = 0; local
903 wanted = 1;
909 if (wanted)
/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/proxy/
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);

Completed in 230 milliseconds