/frameworks/native/libs/vr/libpdx/private/pdx/rpc/ |
buffer_wrapper.h | 17 class BufferWrapper; 20 class BufferWrapper<T*> { 30 BufferWrapper() : buffer_(nullptr), capacity_(0), end_(0) {} 32 BufferWrapper(pointer buffer, size_type capacity, size_type size) 37 BufferWrapper(pointer buffer, size_type size) 38 : BufferWrapper(buffer, size, size) {} 40 BufferWrapper(const BufferWrapper& other) { *this = other; } 42 BufferWrapper(BufferWrapper&& other) { *this = std::move(other); [all...] |
type_operators.h | 44 // 5. BufferWrapper<T*> is convertible to BufferWrapper<std::vector<T, 46 // 6. BufferWrapper<std::vector<T, ...>> is convertible to BufferWrapper<T*>. 131 // Compares BufferWrapper<A*> and BufferWrapper<std::vector<B>>; these are 135 struct IsConvertible<BufferWrapper<A*>, 136 BufferWrapper<std::vector<B, Allocator>>> 139 struct IsConvertible<BufferWrapper<std::vector<A, Allocator>>, 140 BufferWrapper<B*>> : IsEquivalent<A, B> {} [all...] |
serialization.h | 59 // * BufferWrapper of any POD type. 258 inline constexpr std::size_t GetSerializedSize(const BufferWrapper<T>&); 320 // Overload for BufferWrapper types. 322 inline constexpr std::size_t GetSerializedSize(const BufferWrapper<T>& b) { 324 b.size() * sizeof(typename BufferWrapper<T>::value_type); 566 // Serializes the type code for BufferWrapper types. 568 inline void SerializeType(const BufferWrapper<T>& value, void*& buffer) { 571 encoding, value.size() * sizeof(typename BufferWrapper<T>::value_type), 848 inline void SerializeObject(const BufferWrapper<std::vector<T, Allocator>>&, MessageWriter*, void*&); 850 inline void SerializeObject(const BufferWrapper<T*>&, MessageWriter*, void*&) [all...] |
encoding.h | 484 inline constexpr EncodingType EncodeType(const BufferWrapper<T>& value) { 487 sizeof(typename BufferWrapper<T>::value_type));
|
/frameworks/native/services/vr/bufferhubd/ |
producer_channel.h | 31 using BufferWrapper = pdx::rpc::BufferWrapper<T>; 50 pdx::Status<std::pair<BorrowedFence, BufferWrapper<std::uint8_t*>>> 99 BufferWrapper<std::vector<std::uint8_t>> metadata);
|
consumer_channel.h | 31 using MetaData = pdx::rpc::BufferWrapper<std::uint8_t*>;
|
producer_channel.cpp | 20 using android::pdx::rpc::BufferWrapper; 172 BufferWrapper<std::vector<std::uint8_t>> metadata) { 226 Status<std::pair<BorrowedFence, BufferWrapper<std::uint8_t*>>>
|
/prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/ |
heap.py | 47 __all__ = ['BufferWrapper'] 237 class BufferWrapper(object): 243 block = BufferWrapper._heap.malloc(size) 245 Finalize(self, BufferWrapper._heap.free, args=(block,))
|
sharedctypes.py | 63 wrapper = heap.BufferWrapper(size)
|
/prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/ |
heap.py | 47 __all__ = ['BufferWrapper'] 237 class BufferWrapper(object): 243 block = BufferWrapper._heap.malloc(size) 245 Finalize(self, BufferWrapper._heap.free, args=(block,))
|
sharedctypes.py | 63 wrapper = heap.BufferWrapper(size)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/ |
heap.py | 47 __all__ = ['BufferWrapper'] 237 class BufferWrapper(object): 243 block = BufferWrapper._heap.malloc(size) 245 Finalize(self, BufferWrapper._heap.free, args=(block,))
|
sharedctypes.py | 63 wrapper = heap.BufferWrapper(size)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/ |
heap.py | 47 __all__ = ['BufferWrapper'] 237 class BufferWrapper(object): 243 block = BufferWrapper._heap.malloc(size) 245 Finalize(self, BufferWrapper._heap.free, args=(block,))
|
sharedctypes.py | 63 wrapper = heap.BufferWrapper(size)
|
/frameworks/native/libs/vr/libpdx_default_transport/ |
pdx_benchmarks.cpp | 48 using android::pdx::rpc::BufferWrapper; 156 int(const BufferWrapper<std::vector<uint8_t>> data)); 158 BufferWrapper<std::vector<uint8_t>>( 159 const BufferWrapper<std::vector<uint8_t>> data)); 393 using BufferType = BufferWrapper< 458 int WriteVector(const BufferWrapper<std::vector<uint8_t>>& data) { 467 int WriteVector(const BufferWrapper<T>& data) { 476 int EchoVector(const BufferWrapper<T>& data, BufferWrapper<U>* data_out) { 758 thread_local BufferWrapper<std::vector [all...] |
/frameworks/native/libs/vr/libpdx_uds/ |
remote_method_tests.cpp | 177 std::pair<int, BufferWrapper<std::uint8_t*>>( 505 std::pair<int, BufferWrapper<std::vector<std::uint8_t>>> OnReadFile( 507 std::pair<int, BufferWrapper<std::vector<std::uint8_t>>> return_value; 748 TEST_F(RemoteMethodTest, BufferWrapper) { 895 (IsConvertible<StringWrapper<char>, BufferWrapper<char*>>::value)); 897 // BufferWrapper. 899 (IsConvertible<BufferWrapper<char*>, BufferWrapper<char*>>::value)); 901 (IsConvertible<BufferWrapper<char*>, BufferWrapper<const char*>>::value)) [all...] |
/frameworks/native/libs/vr/libbufferhub/include/private/dvr/ |
bufferhub_rpc.h | 189 using MetaData = pdx::rpc::BufferWrapper<std::uint8_t*>;
|
/frameworks/native/libs/vr/libpdx/ |
encoder_performance_test.cpp | 479 // BufferWrapper can't be used with deserialization tests right now because 485 GenerateContainerName("BufferWrapper<uint8_t*>", len), 486 BufferWrapper<uint8_t*>(data_buffers.back().data(),
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_multiprocessing.py | [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_multiprocessing.py | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_multiprocessing.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_multiprocessing.py | [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_multiprocessing.py | [all...] |