HomeSort by relevance Sort by last modified time
    Searched defs:handles (Results 1 - 25 of 144) sorted by null

1 2 3 4 5 6

  /external/icu/android_icu4j/src/main/java/android/icu/text/
LanguageBreakEngine.java 25 boolean handles(int c, int breakType); method in interface:LanguageBreakEngine
UnhandledBreakEngine.java 30 public boolean handles(int c, int breakType) { method in class:UnhandledBreakEngine
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
LanguageBreakEngine.java 24 boolean handles(int c, int breakType); method in interface:LanguageBreakEngine
UnhandledBreakEngine.java 29 public boolean handles(int c, int breakType) { method in class:UnhandledBreakEngine
  /frameworks/av/media/libaaudio/tests/
test_handle_tracker.cpp 69 aaudio_handle_t handles[MAX_HANDLES]; local
77 handles[i] = tracker.put(type, &data[i]);
78 ASSERT_TRUE(handles[i] > 0);
79 found = tracker.get(type, handles[i]);
89 found = tracker.get(type, handles[i]);
94 found = tracker.remove(type, handles[2]);
97 found = tracker.get(type, handles[2]);
106 found = tracker.get(type, handles[2]);
110 handles[2] = handle;
113 found = tracker.remove(type, handles[i])
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dynload_shlib.c 65 } handles[128]; variable in typeref:struct:__anon5904
92 if (statb.st_dev == handles[i].dev &&
93 statb.st_ino == handles[i].ino) {
94 p = (dl_funcptr) dlsym(handles[i].handle,
100 handles[nhandles].dev = statb.st_dev;
102 handles[nhandles].ino[0] = statb.st_ino[0];
103 handles[nhandles].ino[1] = statb.st_ino[1];
104 handles[nhandles].ino[2] = statb.st_ino[2];
106 handles[nhandles].ino = statb.st_ino;
140 handles[nhandles++].handle = handle;
    [all...]
  /external/curl/tests/libtest/
lib536.c 34 int handles; local
45 res_multi_perform(multi, &handles);
53 if(!handles)
  /external/libdrm/tests/kms/
libkms-test-framebuffer.c 44 uint32_t handles[4], pitches[4], offsets[4]; local
84 handles[0] = fb->handle;
88 err = drmModeAddFB2(device->fd, width, height, format, handles,
  /external/libmojo/mojo/public/cpp/bindings/lib/
serialization_context.h 25 // A container for handles during serialization/deserialization.
46 // Swaps all owned handles out with another Handle vector.
50 // Handles are owned by this object.
70 // Stashes handles encoded in a message by index.
71 SerializedHandleVector handles; member in struct:mojo::internal::SerializationContext
message.cc 33 std::vector<Handle>* handles) {
36 handles_.swap(*handles);
52 if (handles_.empty()) // Fast path for the common case: No handles.
55 // Allocate a new message with space for the handles, then copy the buffer
59 // behavior to collect handles. It's unoptimized for now because it's much
60 // more common to have messages with no handles.
97 std::vector<Handle> handles; local
108 handles.resize(num_handles);
112 reinterpret_cast<MojoHandle*>(handles.data()),
121 std::move(mojo_message), num_bytes, &handles);
    [all...]
  /external/libmojo/mojo/android/javatests/src/org/chromium/mojo/bindings/
ValidationTest.java 113 List<Handle> handles = new ArrayList<Handle>(); local
115 handles.add(new HandleMock());
117 Message message = new Message(test.inputData.getData(), handles);
BindingsTestUtils.java 101 Pair<MessagePipeHandle, MessagePipeHandle> handles = local
103 P proxy = manager.attachProxy(handles.first, 0);
105 manager.bind(impl, handles.second);
  /art/runtime/
handle_scope_test.cc 32 // Handles are value objects and should be trivially copyable.
100 // Add a bunch of handles and make sure callbacks work.
102 std::vector<Handle<mirror::Object>> handles; local
106 handles.push_back(hs.NewHandle(o));
107 EXPECT_OBJ_PTR_EQ(o, handles.back().Get());
108 EXPECT_TRUE(hs.Contains(handles.back().GetReference()));
109 EXPECT_TRUE(base->Contains(handles.back().GetReference()));
  /external/curl/docs/examples/
multi-app.c 48 CURL *handles[HANDLECOUNT]; local
51 int still_running; /* keep number of running handles */
59 handles[i] = curl_easy_init();
62 curl_easy_setopt(handles[HTTP_HANDLE], CURLOPT_URL, "http://example.com");
64 curl_easy_setopt(handles[FTP_HANDLE], CURLOPT_URL, "ftp://example.com");
65 curl_easy_setopt(handles[FTP_HANDLE], CURLOPT_UPLOAD, 1L);
72 curl_multi_add_handle(multi_handle, handles[i]);
154 found = (msg->easy_handle == handles[idx]);
172 /* Free the CURL handles */
174 curl_easy_cleanup(handles[i])
    [all...]
  /external/libmojo/mojo/edk/system/
broker_host_posix.cc 55 ScopedPlatformHandleVectorPtr handles; local
56 handles.reset(new PlatformHandleVector(1));
57 handles->at(0) = handle.release();
58 message->SetHandles(std::move(handles));
79 ScopedPlatformHandleVectorPtr handles; local
80 handles.reset(new PlatformHandleVector(2));
81 handles->at(0) = buffer->PassPlatformHandle().release();
82 handles->at(1) = read_only_buffer->PassPlatformHandle().release();
83 message->SetHandles(std::move(handles));
91 ScopedPlatformHandleVectorPtr handles) {
    [all...]
  /external/tpm2/
ExecCommand.c 24 // c) Validates that each of the handles references a loaded entity.
56 UINT32 handleNum = 0; // number of handles unmarshaled into
57 // the handles array
58 TPM_HANDLE handles[MAX_HANDLE_NUM];// array to hold handles in the local
59 // command. Only handles in the handle
60 // area are stored here, not handles
189 result = ParseHandleBuffer(commandCode, &buffer, &size, handles, &handleNum);
192 // Number of handles retrieved from handle area should be less than
195 // All handles in the handle area are required to reference TPM-residen
    [all...]
  /frameworks/av/camera/
ICameraRecordingProxyListener.cpp 69 const std::vector<native_handle_t*>& handles) {
75 if (n != handles.size()) {
76 ALOGE("%s: size of timestamps(%zu) and handles(%zu) mismatch!",
77 __FUNCTION__, timestamps.size(), handles.size());
84 for (auto& handle : handles) {
91 for (auto& handle : handles) {
145 std::vector<native_handle_t*> handles; local
147 handles.reserve(n);
159 ALOGE("%s: Received a null native handle at handles[%d]",
163 handles.push_back(handle)
    [all...]
ICameraClient.cpp 98 const std::vector<native_handle_t*>& handles) {
103 if (n != handles.size()) {
104 ALOGE("%s: size of timestamps(%zu) and handles(%zu) mismatch!",
105 __FUNCTION__, timestamps.size(), handles.size());
112 for (auto& handle : handles) {
191 std::vector<native_handle_t*> handles; local
193 handles.reserve(n);
205 ALOGE("%s: Received a null native handle at handles[%d]",
209 handles.push_back(handle);
213 recordingFrameHandleCallbackTimestampBatch(timestamps, handles);
    [all...]
ICameraRecordingProxy.cpp 87 void releaseRecordingFrameHandleBatch(const std::vector<native_handle_t*>& handles) {
91 uint32_t n = handles.size();
93 for (auto& handle : handles) {
99 for (auto& handle : handles) {
152 std::vector<native_handle_t*> handles; local
153 handles.reserve(n);
157 ALOGE("%s: Received a null native handle at handles[%d]",
161 handles.push_back(handle);
165 releaseRecordingFrameHandleBatch(handles);
  /external/libmojo/mojo/android/javatests/src/org/chromium/mojo/system/impl/
CoreImplTest.java 77 private void addHandlePairToClose(Pair<? extends Handle, ? extends Handle> handles) {
78 mHandlesToClose.add(handles.first);
79 mHandlesToClose.add(handles.second);
195 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
196 addHandlePairToClose(handles);
198 // Test waiting on handles of a newly created message pipe - each should be writable, but
203 new Pair<Handle, Core.HandleSignals>(handles.second, Core.HandleSignals.READABLE));
205 new Pair<Handle, Core.HandleSignals>(handles.first, Core.HandleSignals.WRITABLE));
214 // Same test, but swap the handles around.
217 new Pair<Handle, Core.HandleSignals>(handles.first, Core.HandleSignals.WRITABLE))
236 Pair<? extends Handle, ? extends Handle> handles = core.createMessagePipe(null); local
256 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(options); local
278 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
335 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
349 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
373 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
394 Pair<DataPipe.ProducerHandle, DataPipe.ConsumerHandle> handles = local
423 Pair<DataPipe.ProducerHandle, DataPipe.ConsumerHandle> handles = core.createDataPipe(null); local
436 Pair<DataPipe.ProducerHandle, DataPipe.ConsumerHandle> handles = core.createDataPipe(null); local
465 Pair<DataPipe.ProducerHandle, DataPipe.ConsumerHandle> handles = core.createDataPipe(null); local
559 List<Pair<Handle, Core.HandleSignals>> handles = local
573 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
630 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
656 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
686 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
717 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
767 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
792 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
828 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
853 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
873 Pair<DataPipe.ProducerHandle, DataPipe.ConsumerHandle> handles = core.createDataPipe(null); local
918 Pair<MessagePipeHandle, MessagePipeHandle> handles = core.createMessagePipe(null); local
    [all...]
  /external/libdrm/tests/planetest/
bo.c 94 uint32_t handles[4], pitches[4], offsets[4]; local
96 handles[0] = bo->handle;
100 handles[1] = bo->handle;
106 format, handles, pitches, offsets,
  /external/libmojo/mojo/message_pump/
message_pump_mojo_unittest.cc 90 MessagePipe handles; local
92 handles.handle0.get(),
96 handles.handle1.get(), NULL, 0, NULL, 0, MOJO_WRITE_MESSAGE_FLAG_NONE);
98 handles.handle1.get(), NULL, 0, NULL, 0, MOJO_WRITE_MESSAGE_FLAG_NONE);
101 MojoWait(handles.handle0.get().value(), MOJO_HANDLE_SIGNAL_READABLE,
116 MessagePipe handles; local
118 handles.handle0.get(),
122 handles.handle1.get(), NULL, 0, NULL, 0, MOJO_WRITE_MESSAGE_FLAG_NONE);
126 MojoWait(handles.handle0.get().value(), MOJO_HANDLE_SIGNAL_READABLE,
137 handles.handle1.get(), NULL, 0, NULL, 0, MOJO_WRITE_MESSAGE_FLAG_NONE)
152 MessagePipe handles; local
165 MessagePipe handles; local
180 MessagePipe handles; local
    [all...]
  /external/syslinux/efi/
pxe.c 53 EFI_HANDLE *handles; local
58 NULL, &nr_handles, &handles);
96 EFI_HANDLE *handles = NULL; local
103 NULL, &nr_handles, &handles);
108 status = uefi_call_wrapper(BS->HandleProtocol, 3, handles[0],
  /system/extras/libfec/
fec_process.cpp 79 std::vector<pthread_t> handles; local
106 handles.push_back(thread);
119 for (auto thread : handles) {
  /system/tpm/trunks/
resource_manager.h 40 // reply. It maintains all actual TPM handles and provides its own handles to
74 std::vector<TPM_HANDLE> handles; member in struct:trunks::ResourceManager::MessageInfo
121 // Returns a list of handles parsed from a given |buffer|. No more than
202 // Replaces all handles in a given |message| with |new_handles| and returns
216 // A mapping of known virtual handles to corresponding HandleInfo.
218 // A mapping of loaded tpm object handles to the corresponding virtual handle.
220 // A mapping of known session handles to corresponding HandleInfo.

Completed in 463 milliseconds

1 2 3 4 5 6