OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bufP
(Results
1 - 2
of
2
) sorted by null
/libcore/ojluni/src/main/native/
SocketInputStream.c
59
char *
bufP
;
86
bufP
= (char *)malloc((size_t)len);
87
if (
bufP
== NULL) {
88
bufP
= BUF;
92
bufP
= BUF;
112
if (
bufP
!= BUF) {
113
free(
bufP
);
119
nread = NET_Read(fd,
bufP
, len);
147
(*env)->SetByteArrayRegion(env, data, off, nread, (jbyte *)
bufP
);
150
if (
bufP
!= BUF)
[
all
...]
SocketOutputStream.c
59
char *
bufP
;
80
bufP
= BUF;
84
bufP
= (char *)malloc((size_t)buflen);
87
if (
bufP
== NULL) {
88
bufP
= BUF;
97
(*env)->GetByteArrayRegion(env, data, off, chunkLen, (jbyte *)
bufP
);
100
int n = NET_Send(fd,
bufP
+ loff, llen, 0);
117
if (
bufP
!= BUF) {
118
free(
bufP
);
126
if (
bufP
!= BUF)
[
all
...]
Completed in 58 milliseconds