OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:extrabuf
(Results
1 - 6
of
6
) sorted by null
/external/dropbear/
common-channel.c
59
#define ERRFD_IS_READ(channel) ((channel)->
extrabuf
== NULL)
154
newchan->
extrabuf
= NULL; /* The user code can set it up */
232
writechannel(channel, channel->errfd, channel->
extrabuf
);
253
} else if (channel->errfd >= 0 && channel->
extrabuf
&&
254
cbuf_getused(channel->
extrabuf
) > 0) {
267
TRACE(("writebuf size %d
extrabuf
size %d",
269
channel->
extrabuf
? cbuf_getused(channel->
extrabuf
) : 0))
426
dropbear_assert(channel->
extrabuf
== NULL ||
427
channel->recvwindow <= cbuf_getavail(channel->
extrabuf
));
[
all
...]
cli-channel.c
56
common_recv_msg_channel_data(channel, channel->errfd, channel->
extrabuf
);
channel.h
73
circbuffer *
extrabuf
; /* extended-data for the program - used like writebuf
member in struct:Channel
cli-chansession.c
353
channel->
extrabuf
= cbuf_new(RECV_MAXWINDOW);
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
gzip.py
113
self.
extrabuf
= ""
268
chunk = self.
extrabuf
[offset: offset + size]
331
self.
extrabuf
= self.
extrabuf
[offset:] + data
401
self.
extrabuf
= ""
443
i = self.
extrabuf
.find('\n', offset) + 1
447
return self.
extrabuf
[offset: i]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
gzip.py
113
self.
extrabuf
= ""
268
chunk = self.
extrabuf
[offset: offset + size]
331
self.
extrabuf
= self.
extrabuf
[offset:] + data
401
self.
extrabuf
= ""
443
i = self.
extrabuf
.find('\n', offset) + 1
447
return self.
extrabuf
[offset: i]
Completed in 756 milliseconds