OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_inputStream
(Results
1 - 9
of
9
) sorted by null
/external/webkit/Source/WebCore/html/parser/
HTMLInputStream.h
127
:
m_inputStream
(&inputStream)
129
m_line =
m_inputStream
->current().currentLine();
130
m_column =
m_inputStream
->current().currentColumn();
131
m_inputStream
->splitInto(m_next);
134
m_inputStream
->current().setCurrentPosition(m_line, m_column, 0);
141
int unparsedRemainderLength =
m_inputStream
->current().length();
142
m_inputStream
->mergeFrom(m_next);
144
m_inputStream
->current().setCurrentPosition(m_line, m_column, unparsedRemainderLength);
148
HTMLInputStream*
m_inputStream
;
/external/chromium/android/jni/
platform_file_jni.h
22
jobject
m_inputStream
;
platform_file_jni.cc
23
m_inputStream
= env->NewGlobalRef(env->CallStaticObjectMethod(
33
env->CallVoidMethod(
m_inputStream
, m_close);
35
env->DeleteGlobalRef(
m_inputStream
);
42
int size = (int) env->CallIntMethod(
m_inputStream
, m_read, buffer);
/external/webkit/Source/WebKit/android/WebCoreSupport/
UrlInterceptResponse.h
56
return
m_inputStream
? 200 : 404;
66
OwnPtr<JavaInputStreamWrapper>
m_inputStream
;
UrlInterceptResponse.cpp
40
:
m_inputStream
(env->NewGlobalRef(inputStream))
54
env->CallVoidMethod(
m_inputStream
, m_close);
56
env->DeleteGlobalRef(
m_inputStream
);
69
int size = (int) env->CallIntMethod(
m_inputStream
, m_read, m_buffer);
78
jobject
m_inputStream
;
99
m_inputStream
.set(new JavaInputStreamWrapper(env, stream));
126
if (!
m_inputStream
)
128
m_inputStream
->read(out);
/external/webkit/Source/WebCore/platform/network/soup/
SocketStreamHandle.h
62
GRefPtr<GInputStream>
m_inputStream
;
SocketStreamHandleSoup.cpp
111
m_inputStream
= g_io_stream_get_input_stream(G_IO_STREAM(m_socketConnection.get()));
114
g_input_stream_read_async(
m_inputStream
.get(), m_readBuffer, READ_BUFFER_SIZE, G_PRIORITY_DEFAULT, 0,
140
if (
m_inputStream
) // The client may have closed the connection.
141
g_input_stream_read_async(
m_inputStream
.get(), m_readBuffer, READ_BUFFER_SIZE, G_PRIORITY_DEFAULT, 0,
193
m_inputStream
= 0;
ResourceHandleSoup.cpp
382
if (d->
m_inputStream
) {
383
g_object_set_data(G_OBJECT(d->
m_inputStream
.get()), "webkit-resource", 0);
384
d->
m_inputStream
.clear();
474
d->
m_inputStream
= adoptGRef(in);
478
g_object_set_data(G_OBJECT(d->
m_inputStream
.get()), "webkit-resource", handle.get());
499
g_input_stream_read_async(d->
m_inputStream
.get(), d->m_buffer, READ_BUFFER_SIZE,
744
g_input_stream_close_finish(d->
m_inputStream
.get(), res, 0);
765
gssize bytesRead = g_input_stream_read_finish(d->
m_inputStream
.get(), asyncResult, &error.outPtr());
781
g_input_stream_close_async(d->
m_inputStream
.get(), G_PRIORITY_DEFAULT,
803
g_input_stream_read_async(d->
m_inputStream
.get(), d->m_buffer, READ_BUFFER_SIZE, G_PRIORITY_DEFAULT
[
all
...]
/external/webkit/Source/WebCore/platform/network/
ResourceHandleInternal.h
192
GRefPtr<GInputStream>
m_inputStream
;
Completed in 97 milliseconds