Searched refs:pointer (Results 1 - 23 of 23) sorted by last modified time

/system/tools/hidl/test/
H A Dhidl_test_client.cpp31 #include <android/hardware/tests/pointer/1.0/IGraph.h>
32 #include <android/hardware/tests/pointer/1.0/IPointer.h>
68 // TODO uncomment this when kernel is patched with pointer changes.
95 using ::android::hardware::tests::pointer::V1_0::IGraph;
96 using ::android::hardware::tests::pointer::V1_0::IPointer;
406 pointerInterface = IPointer::getService("pointer", mode == PASSTHROUGH /* getStub */);
411 validationPointerInterface = IPointer::getService("pointer", true /* getStub */);
542 "android.hardware.tests.pointer@1.0::IPointer/pointer",
548 "android.hardware.tests.pointer
[all...]
H A Dhidl_test_servers.cpp31 #include <android/hardware/tests/pointer/1.0/IGraph.h>
32 #include <android/hardware/tests/pointer/1.0/IPointer.h>
51 using ::android::hardware::tests::pointer::V1_0::IGraph;
52 using ::android::hardware::tests::pointer::V1_0::IPointer;
118 forkServer<IPointer>("pointer");
/system/security/keystore/include/keystore/
H A Dutils.h16 * such that it is defined both for nulled outer pointer and
91 typedef T* pointer; typedef in struct:std::iterator_traits
/system/libvintf/include/vintf/
H A DMapValueIterator.h43 using ptr_type = typename traits::pointer;
/system/libhidl/base/include/hidl/
H A DHidlSupport.h70 // hidl_handle wraps a pointer to a native_handle_t in a hidl_pointer,
460 using ptr_type = typename traits::pointer;
/system/libhidl/transport/memory/1.0/
H A DIMemory.hal60 * @return ptr Actual pointer to underlying memory.
62 getPointer() generates (pointer ptr);
/system/extras/memory_replay/
H A Dmain.cpp57 uintptr_t pointer; local
58 if (sscanf(word, "free %" SCNxPTR, &pointer) == 1 && pointer != 0) {
92 // <tid>: <action_type> <pointer>
H A DPointers.cpp38 err(1, "Unable to allocate data for pointer hash: %zu total_allocs\n", max_allocs);
52 void Pointers::Add(uintptr_t key_pointer, void* pointer) { argument
58 data->pointer = pointer;
68 err(1, "No pointer value found for 0x%" PRIxPTR "\n", key_pointer);
71 void* pointer = data->pointer; local
74 return pointer;
112 free(pointers_[i].pointer);
H A DPointers.h25 void* pointer; member in struct:pointer_data
33 void Add(uintptr_t key_pointer, void* pointer);
/system/extras/memory_replay/tests/
H A DActionTest.cpp34 void* pointer = pointers.Remove(0x1234); local
35 ASSERT_TRUE(pointer != nullptr);
36 free(pointer);
69 void* pointer = pointers.Remove(0x1234); local
70 ASSERT_TRUE(pointer != nullptr);
71 free(pointer);
107 void* pointer = pointers.Remove(0x1234); local
108 ASSERT_TRUE(pointer != nullptr);
109 free(pointer);
117 pointer
143 void* pointer = pointers.Remove(0x1234); local
[all...]
/system/extras/perfprofd/quipper/
H A Dperf_utils.h23 inline void operator()(void* pointer) { argument
24 free(pointer);
/system/extras/tests/memtest/
H A DAndroid.mk17 -fomit-frame-pointer \
/system/extras/tests/pftest/
H A DAndroid.mk16 LOCAL_CFLAGS += -fomit-frame-pointer
/system/core/adb/
H A DAndroid.mk282 -Wno-sizeof-pointer-memaccess -Wno-unused-parameter \
H A Dsysdeps.h403 typedef HANDLE pointer; typedef in class:handle_deleter
/system/core/libmemunreachable/
H A Dbionic.h31 extern ssize_t malloc_backtrace(void* pointer, uintptr_t* frames, size_t frame_count);
/system/core/libpixelflinger/
H A DAndroid.mk27 PIXELFLINGER_CFLAGS := -fstrict-aliasing -fomit-frame-pointer
/system/chre/external/flatbuffers/include/flatbuffers/
H A Dflatbuffers.h248 // perform the indirection and return a pointer.
411 // Change elements if you have a non-const pointer to this object.
428 // Get a mutable pointer to tables/strings inside this vector.
561 // Relinquish the pointer to the caller.
697 /// @param[in] allocator A pointer to the `simple_allocator` that should be
739 /// @return Returns an `uint8_t` pointer to the FlatBuffer data inside the
746 /// @brief Get a pointer to an unfinished buffer.
747 /// @return Returns a `uint8_t` pointer to the unfinished buffer.
751 /// @brief Get the released pointer to the serialized buffer.
754 /// to deallocate this pointer (sinc
[all...]
/system/chre/pal/include/chre/pal/
H A Dsystem.h99 * @param pointer A pointer previously returned by memoryAlloc
103 void (*memoryFree)(void *pointer);
/system/chre/platform/include/chre/platform/
H A Dmemory.h33 void memoryFree(void *pointer);
/system/chre/platform/shared/
H A Dmemory.cc27 void memoryFree(void *pointer) { argument
28 free(pointer);
H A Dpal_system_api.cc66 void palSystemApiMemoryFree(void *pointer) { argument
67 memoryFree(pointer);
/system/chre/util/include/chre/util/
H A Darray_queue.h146 ValueType *pointer, ValueType *base, size_t tail)
147 : mPointer(pointer), mBase(base), mTail(tail) {}
238 * Obtains a pointer to the underlying storage for the vector.
240 * @return A pointer to the storage used for elements in this vector.
245 * Obtains a pointer to the underlying storage for the vector.
247 * @return A pointer to the storage used for elements in this vector.
145 ArrayQueueIterator( ValueType *pointer, ValueType *base, size_t tail) argument

Completed in 463 milliseconds