OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InputData
(Results
1 - 25
of
42
) sorted by null
1
2
/system/connectivity/shill/net/
io_handler.h
28
struct SHILL_EXPORT
InputData
{
29
InputData
() : buf(nullptr), len(0) {}
30
InputData
(unsigned char* in_buf, size_t in_len) : buf(in_buf), len(in_len) {}
44
typedef base::Callback<void(
InputData
*)> InputCallback;
rtnl_handler.h
157
void ParseRTNL(
InputData
* data);
189
base::Callback<void(
InputData
*)> rtnl_callback_;
io_input_handler.cc
62
InputData
input_data(buf, len);
netlink_manager.h
93
struct
InputData
;
346
void OnRawNlMessageReceived(
InputData
* data);
439
base::Callback<void(
InputData
*)> dispatcher_callback_;
rtnl_handler_unittest.cc
164
InputData
data(b.GetData(), b.GetLength());
177
InputData
data(encoded.GetData(), encoded.GetLength());
193
InputData
data(reinterpret_cast<unsigned char*>(&errmsg), sizeof(errmsg));
/system/connectivity/apmanager/
hostapd_monitor.h
30
struct
InputData
;
81
void ParseMessage(shill::
InputData
* data);
94
base::Callback<void(shill::
InputData
*)> hostapd_callback_;
hostapd_monitor_unittest.cc
75
void ParseMessage(shill::
InputData
* data) {
97
shill::
InputData
data;
108
shill::
InputData
data;
hostapd_monitor.cc
185
void HostapdMonitor::ParseMessage(shill::
InputData
* data) {
/system/connectivity/shill/
http_proxy.h
37
struct
InputData
;
114
bool ReadClientHeaders(
InputData
* data);
118
void ReadFromClient(
InputData
* data);
119
void ReadFromServer(
InputData
* data);
138
base::Callback<void(
InputData
*)> read_client_callback_;
139
base::Callback<void(
InputData
*)> read_server_callback_;
http_request.h
40
struct
InputData
;
114
void ReadFromServer(
InputData
* data);
127
base::Callback<void(
InputData
*)> read_server_callback_;
icmp_session.h
117
void OnEchoReplyReceived(
InputData
* data);
icmp_session_unittest.cc
141
void OnEchoReplyReceived(
InputData
* data) {
260
InputData
data_1(reinterpret_cast<unsigned char*>(buffer_1),
298
InputData
data_2(reinterpret_cast<unsigned char*>(buffer_2),
315
InputData
data_3(reinterpret_cast<unsigned char*>(buffer_3),
330
InputData
data_4(reinterpret_cast<unsigned char*>(buffer_4),
396
InputData
data_1(reinterpret_cast<unsigned char*>(buffer_1),
crypto_util_proxy.h
121
void HandleShimOutput(
InputData
* data);
icmp_session.cc
163
void IcmpSession::OnEchoReplyReceived(
InputData
* data) {
crypto_util_proxy_unittest.cc
312
InputData
data;
387
InputData
data;
http_proxy.cc
378
// from
InputData
. The passed in |data| is modified to indicate the
380
bool HTTPProxy::ReadClientHeaders(
InputData
* data) {
487
void HTTPProxy::ReadFromClient(
InputData
* data) {
520
void HTTPProxy::ReadFromServer(
InputData
* data) {
/external/llvm/lib/Support/
MemoryBuffer.cpp
85
MemoryBufferMem(StringRef
InputData
, bool RequiresNullTerminator) {
86
init(
InputData
.begin(),
InputData
.end(), RequiresNullTerminator);
105
MemoryBuffer::getMemBuffer(StringRef
InputData
, StringRef BufferName,
108
MemoryBufferMem(
InputData
, RequiresNullTerminator);
119
MemoryBuffer::getMemBufferCopy(StringRef
InputData
, const Twine &BufferName) {
121
getNewUninitMemBuffer(
InputData
.size(), BufferName);
124
memcpy(const_cast<char*>(Buf->getBufferStart()),
InputData
.data(),
125
InputData
.size());
/external/webrtc/webrtc/modules/audio_coding/acm2/
audio_coding_module_impl.h
188
struct
InputData
{
214
int Add10MsDataInternal(const AudioFrame& audio_frame,
InputData
* input_data)
216
int Encode(const
InputData
& input_data)
audio_coding_module_impl.cc
128
int32_t AudioCodingModuleImpl::Encode(const
InputData
& input_data) {
275
InputData
input_data;
282
InputData
* input_data) {
/external/llvm/include/llvm/Support/
MemoryBuffer.h
92
/// Open the specified memory range as a MemoryBuffer. Note that
InputData
95
getMemBuffer(StringRef
InputData
, StringRef BufferName = "",
102
/// and taking ownership of it.
InputData
does not have to be null terminated.
104
getMemBufferCopy(StringRef
InputData
, const Twine &BufferName = "");
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
routprot.h
186
typedef DWORD (WINAPI *PMIB_CREATE)(ULONG InputDataSize,PVOID
InputData
);
187
typedef DWORD (WINAPI *PMIB_DELETE)(ULONG InputDataSize,PVOID
InputData
);
188
typedef DWORD (WINAPI *PMIB_GET)(ULONG InputDataSize,PVOID
InputData
,PULONG OutputDataSize,PVOID OutputData);
189
typedef DWORD (WINAPI *PMIB_SET)(ULONG InputDataSize,PVOID
InputData
);
190
typedef DWORD (WINAPI *PMIB_GET_FIRST)(ULONG InputDataSize,PVOID
InputData
,PULONG OutputDataSize,PVOID OutputData);
191
typedef DWORD (WINAPI *PMIB_GET_NEXT)(ULONG InputDataSize,PVOID
InputData
,PULONG OutputDataSize,PVOID OutputData);
192
typedef DWORD (WINAPI *PMIB_SET_TRAP_INFO)(HANDLE Event,ULONG InputDataSize,PVOID
InputData
,PULONG OutputDataSize,PVOID OutputData);
193
typedef DWORD (WINAPI *PMIB_GET_TRAP_INFO)(ULONG InputDataSize,PVOID
InputData
,PULONG OutputDataSize,PVOID OutputData);
/system/connectivity/dhcp_client/
dhcpv4.h
55
void ParseRawPacket(shill::
InputData
* data);
/system/connectivity/shill/vpn/
openvpn_management_server.h
31
struct
InputData
;
103
void OnInput(
InputData
* data);
openvpn_management_server_unittest.cc
117
InputData
CreateInputDataFromString(const string& str) {
118
InputData
data(
128
void OnInput(
InputData
* data) {
278
InputData
data = CreateInputDataFromString(s);
291
InputData
data = CreateInputDataFromString(s);
307
InputData
data = CreateInputDataFromString(s);
third_party_vpn_driver.h
173
void OnInput(
InputData
* data);
Completed in 430 milliseconds
1
2