HomeSort by relevance Sort by last modified time
    Searched defs:InputChannel (Results 1 - 5 of 5) 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
100 // --- InputChannel ---
102 InputChannel::InputChannel(const std::string& name, int fd) :
114 InputChannel::~InputChannel() {
123 status_t InputChannel::openInputChannelPair(const std::string& name,
124 sp<InputChannel>& outServerChannel, sp<InputChannel>& outClientChannel) {
143 outServerChannel = new InputChannel(serverChannelName, sockets[0])
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlChangeReporter.java 56 private final InputChannel<T> input;
62 this.input = new InputChannel<T>(output, listener, context);
77 private static final class InputChannel<T> implements HtmlSanitizer.Policy {
83 InputChannel(
  /frameworks/native/include/input/
InputTransport.h 23 * The InputChannel provides a mechanism for exchanging InputMessage structures across processes.
135 * Each endpoint has its own InputChannel object that specifies its file descriptor.
139 class InputChannel : public RefBase {
141 virtual ~InputChannel();
144 InputChannel(const std::string& name, int fd);
151 sp<InputChannel>& outServerChannel, sp<InputChannel>& outClientChannel);
182 sp<InputChannel> dup() const;
195 explicit InputPublisher(const sp<InputChannel>& channel);
201 inline sp<InputChannel> getChannel() { return mChannel;
    [all...]
  /external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar 

Completed in 152 milliseconds