OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InputChannel
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/java/android/view/
InputChannel.java
27
* from an
InputChannel
at a time.
30
public final class
InputChannel
implements Parcelable {
31
private static final String TAG = "
InputChannel
";
35
public static final Parcelable.Creator<
InputChannel
> CREATOR
36
= new Parcelable.Creator<
InputChannel
>() {
37
public
InputChannel
createFromParcel(Parcel source) {
38
InputChannel
result = new
InputChannel
();
43
public
InputChannel
[] newArray(int size) {
44
return new
InputChannel
[size]
[
all
...]
/frameworks/native/libs/input/
InputTransport.cpp
13
// Log debug messages whenever
InputChannel
objects are created/destroyed
96
// ---
InputChannel
---
98
InputChannel
::
InputChannel
(const String8& name, int fd) :
110
InputChannel
::~
InputChannel
() {
119
status_t
InputChannel
::openInputChannelPair(const String8& name,
120
sp<
InputChannel
>& outServerChannel, sp<
InputChannel
>& outClientChannel) {
139
outServerChannel = new
InputChannel
(serverChannelName, sockets[0])
[
all
...]
/frameworks/native/include/input/
InputTransport.h
23
* The
InputChannel
provides a mechanism for exchanging InputMessage structures across processes.
125
* Each endpoint has its own
InputChannel
object that specifies its file descriptor.
129
class
InputChannel
: public RefBase {
131
virtual ~
InputChannel
();
134
InputChannel
(const String8& name, int fd);
141
sp<
InputChannel
>& outServerChannel, sp<
InputChannel
>& outClientChannel);
172
sp<
InputChannel
> dup() const;
185
explicit InputPublisher(const sp<
InputChannel
>& channel);
191
inline sp<
InputChannel
> getChannel() { return mChannel;
[
all
...]
Completed in 167 milliseconds