HomeSort by relevance Sort by last modified time
    Searched refs:howmuch (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/libevent/
buffer.c 350 evbuffer_read(struct evbuffer *buf, int fd, int howmuch)
364 } else if (n > EVBUFFER_MAX_READ && n > howmuch) {
378 if (howmuch < 0 || howmuch > n)
379 howmuch = n;
382 if (evbuffer_expand(buf, howmuch) == -1)
389 n = read(fd, p, howmuch);
391 n = recv(fd, p, howmuch, 0);
evbuffer.c 99 int howmuch = -1; local
111 howmuch = bufev->wm_read.high - EVBUFFER_LENGTH(bufev->input);
113 if (howmuch <= 0) {
122 res = evbuffer_read(bufev->input, fd, howmuch);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
poplib.py 291 def top(self, which, howmuch):
293 and first 'howmuch' lines of message body.
297 return self._longcmd('TOP %s %s' % (which, howmuch))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
poplib.py 291 def top(self, which, howmuch):
293 and first 'howmuch' lines of message body.
297 return self._longcmd('TOP %s %s' % (which, howmuch))

Completed in 57 milliseconds