OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UntypedHandle
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/mojo/public/java/system/src/org/chromium/mojo/system/
UntypedHandle.java
15
public interface
UntypedHandle
extends Handle {
21
public
UntypedHandle
pass();
Handle.java
37
* Converts this handle into an {@link
UntypedHandle
}, invalidating this handle.
39
public
UntypedHandle
toUntypedHandle();
MessagePipeHandle.java
151
private List<
UntypedHandle
> mHandles;
198
public List<
UntypedHandle
> getHandles() {
205
public void setHandles(List<
UntypedHandle
> handles) {
InvalidHandle.java
17
public class InvalidHandle implements
UntypedHandle
, MessagePipeHandle, ConsumerHandle,
75
public
UntypedHandle
toUntypedHandle() {
88
* @see
UntypedHandle
#toMessagePipeHandle()
96
* @see
UntypedHandle
#toDataPipeConsumerHandle()
104
* @see
UntypedHandle
#toDataPipeProducerHandle()
112
* @see
UntypedHandle
#toSharedBufferHandle()
Core.java
186
* @return a new {@link
UntypedHandle
} representing the native handle.
188
public
UntypedHandle
acquireNativeHandle(int handle);
/external/chromium_org/mojo/android/system/src/org/chromium/mojo/system/impl/
UntypedHandleImpl.java
11
import org.chromium.mojo.system.
UntypedHandle
;
14
* Implementation of {@link
UntypedHandle
}.
16
class UntypedHandleImpl extends HandleBase implements
UntypedHandle
{
33
* @see org.chromium.mojo.system.
UntypedHandle
#pass()
36
public
UntypedHandle
pass() {
41
* @see org.chromium.mojo.system.
UntypedHandle
#toMessagePipeHandle()
49
* @see org.chromium.mojo.system.
UntypedHandle
#toDataPipeConsumerHandle()
57
* @see org.chromium.mojo.system.
UntypedHandle
#toDataPipeProducerHandle()
65
* @see org.chromium.mojo.system.
UntypedHandle
#toSharedBufferHandle()
HandleBase.java
12
import org.chromium.mojo.system.
UntypedHandle
;
41
* an {@link
UntypedHandle
} into a typed one, or any handle into an {@link
UntypedHandle
}.
84
public
UntypedHandle
toUntypedHandle() {
CoreImpl.java
22
import org.chromium.mojo.system.
UntypedHandle
;
177
public
UntypedHandle
acquireNativeHandle(int handle) {
262
List<
UntypedHandle
> handles = new ArrayList<
UntypedHandle
>(
/external/chromium_org/mojo/android/javatests/src/org/chromium/mojo/
HandleMock.java
15
import org.chromium.mojo.system.
UntypedHandle
;
24
public class HandleMock implements
UntypedHandle
, MessagePipeHandle,
56
public
UntypedHandle
toUntypedHandle() {
69
* @see org.chromium.mojo.system.
UntypedHandle
#pass()
170
* @see
UntypedHandle
#toMessagePipeHandle()
178
* @see
UntypedHandle
#toDataPipeConsumerHandle()
186
* @see
UntypedHandle
#toDataPipeProducerHandle()
194
* @see
UntypedHandle
#toSharedBufferHandle()
/external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
Decoder.java
14
import org.chromium.mojo.system.
UntypedHandle
;
354
* Deserializes an |
UntypedHandle
| at the given offset.
356
public
UntypedHandle
readUntypedHandle(int offset, boolean nullable) {
445
* Deserializes an array of |
UntypedHandle
| at the given offset.
447
public
UntypedHandle
[] readUntypedHandles(
454
UntypedHandle
[] result = new
UntypedHandle
[si.numFields];
Completed in 103 milliseconds