OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:thandle
(Results
1 - 9
of
9
) sorted by null
/system/core/fastbootd/
transport.c
30
ssize_t transport_handle_write(struct transport_handle *
thandle
, char *buffer, size_t len)
32
return
thandle
->transport->write(
thandle
, buffer, len);
35
void transport_handle_close(struct transport_handle *
thandle
)
37
thandle
->transport->close(
thandle
);
40
int transport_handle_download(struct transport_handle *
thandle
, size_t len)
64
ret =
thandle
->transport->read(
thandle
, buffer + n, len - n);
81
transport_handle_close(
thandle
);
87
struct transport_handle *
thandle
= arg;
local
116
struct transport_handle *
thandle
;
local
[
all
...]
transport.h
30
void (*close)(struct transport_handle *
thandle
);
31
ssize_t (*read)(struct transport_handle *
thandle
, void *data, size_t len);
32
ssize_t (*write)(struct transport_handle *
thandle
, const void *data, size_t len);
usb_linux_client.c
235
static ssize_t usb_write(struct transport_handle *
thandle
, const void *data, size_t len)
238
struct transport *t =
thandle
->transport;
275
ssize_t usb_read(struct transport_handle *
thandle
, void *data, size_t len)
278
struct transport *t =
thandle
->transport;
291
void usb_close(struct transport_handle *
thandle
)
294
struct transport *t =
thandle
->transport;
protocol.c
170
struct protocol_handle *create_protocol_handle(struct transport_handle *
thandle
)
176
phandle->transport_handle =
thandle
;
/packages/apps/Nfc/nci/jni/
NfcJniUtil.h
127
int
tHandle
;
/hardware/libhardware/tests/nusensors/
nusensors.cpp
85
"\
thandle
: %d\n"
/external/libvpx/libvpx/examples/includes/geshi/geshi/
delphi.php
208
'Single', 'SmallInt', 'String', 'TClass', 'TDate', 'TDateTime', 'TextFile', '
THandle
',
/external/tinyxml/
xmltest.cpp
994
TiXmlHandle
tHandle
= aHandle.Child( 0 );
996
assert(
tHandle
.Text() );
997
XmlTest( "ISO-8859-1 Parsing.", "C?nt?nt???????",
tHandle
.Text()->Value() );
/external/netperf/
netlib.c
920
HANDLE
tHandle
;
942
tHandle
= CreateThread(0,
948
CloseHandle(
tHandle
);
[
all
...]
Completed in 235 milliseconds