HomeSort by relevance Sort by last modified time
    Searched refs:vtable (Results 1 - 25 of 221) sorted by null

1 2 3 4 5 6 7 8 9

  /external/llvm/test/MC/ARM/
elf-reloc-03.s 16 movw r1, :lower16:vtable
20 vtable: label
25 // OBJ: 0x{{[0-9,A-F]+}} R_ARM_MOVW_ABS_NC vtable
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/
elf-reloc-03.s 16 movw r1, :lower16:vtable
20 vtable: label
25 // OBJ: 0x{{[0-9,A-F]+}} R_ARM_MOVW_ABS_NC vtable
  /external/grpc-grpc/src/core/ext/filters/client_channel/
proxy_mapper.cc 23 void grpc_proxy_mapper_init(const grpc_proxy_mapper_vtable* vtable,
25 mapper->vtable = vtable;
33 return mapper->vtable->map_name(mapper, server_uri, args, name_to_resolve,
42 return mapper->vtable->map_address(mapper, address, args, new_address,
47 mapper->vtable->destroy(mapper);
connector.cc 24 connector->vtable->ref(connector);
29 connector->vtable->unref(connector);
36 connector->vtable->connect(connector, in_args, out_args, notify);
40 connector->vtable->shutdown(connector, why);
client_channel_factory.cc 25 factory->vtable->ref(factory);
29 factory->vtable->unref(factory);
34 return factory->vtable->create_subchannel(factory, args);
40 return factory->vtable->create_client_channel(factory, target, type, args);
  /external/grpc-grpc/src/core/lib/security/credentials/alts/
grpc_alts_credentials_options.cc 28 if (options != nullptr && options->vtable != nullptr &&
29 options->vtable->copy != nullptr) {
30 return options->vtable->copy(options);
41 if (options->vtable != nullptr && options->vtable->destruct != nullptr) {
42 options->vtable->destruct(options);
grpc_alts_credentials_server_options.cc 36 static const grpc_alts_credentials_options_vtable vtable = { variable
43 server_options->base.vtable = &vtable;
  /external/grpc-grpc/src/core/lib/channel/
handshaker_factory.cc 29 GPR_ASSERT(handshaker_factory->vtable != nullptr);
30 handshaker_factory->vtable->add_handshakers(handshaker_factory, args,
38 GPR_ASSERT(handshaker_factory->vtable != nullptr);
39 handshaker_factory->vtable->destroy(handshaker_factory);
  /external/compiler-rt/test/cfi/cross-dso/
target_out_of_bounds.cpp 28 void *vtable = mmap(nullptr, 4096, PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, 0, 0); local
29 // Create an object with a vtable in an unaddressable memory region.
30 *(uintptr_t *)p = (uintptr_t)vtable + 64;
32 // CHECK-UNADDR: note: invalid vtable
35 // CHECK-UNADDR: note: invalid vtable
38 // Create an object with a vtable outside of any known DSO, but still in an
40 void *vtable = calloc(1, 128); local
41 *(uintptr_t *)p = (uintptr_t)vtable + 64;
43 // CHECK-ZERO: note: invalid vtable
46 // CHECK-ZERO: note: invalid vtable
51 void *vtable = calloc(1, 128); local
    [all...]
  /external/grpc-grpc/src/core/lib/avl/
avl.cc 31 grpc_avl grpc_avl_create(const grpc_avl_vtable* vtable) {
33 out.vtable = vtable;
45 static void unref_node(const grpc_avl_vtable* vtable, grpc_avl_node* node,
51 vtable->destroy_key(node->key, user_data);
52 vtable->destroy_value(node->value, user_data);
53 unref_node(vtable, node->left, user_data);
54 unref_node(vtable, node->right, user_data);
94 static grpc_avl_node* get(const grpc_avl_vtable* vtable, grpc_avl_node* node,
102 cmp = vtable->compare_keys(node->key, key, user_data)
    [all...]
  /external/grpc-grpc/src/core/lib/iomgr/
endpoint.cc 27 ep->vtable->read(ep, slices, cb);
32 ep->vtable->write(ep, slices, cb, arg);
36 ep->vtable->add_to_pollset(ep, pollset);
41 ep->vtable->add_to_pollset_set(ep, pollset_set);
46 ep->vtable->delete_from_pollset_set(ep, pollset_set);
50 ep->vtable->shutdown(ep, why);
53 void grpc_endpoint_destroy(grpc_endpoint* ep) { ep->vtable->destroy(ep); }
56 return ep->vtable->get_peer(ep);
59 int grpc_endpoint_get_fd(grpc_endpoint* ep) { return ep->vtable->get_fd(ep); }
62 return ep->vtable->get_resource_user(ep)
    [all...]
pollset_uv.h 29 void grpc_custom_pollset_global_init(grpc_custom_poller_vtable* vtable);
iomgr_internal.cc 29 void grpc_set_iomgr_platform_vtable(grpc_iomgr_platform_vtable* vtable) {
30 iomgr_platform_vtable = vtable;
socket_mutator.cc 30 const grpc_socket_mutator_vtable* vtable) {
31 mutator->vtable = vtable;
41 return mutator->vtable->mutate_fd(fd, mutator);
50 c = GPR_ICMP(sma->vtable, smb->vtable);
52 c = sma->vtable->compare(sma, smb);
60 mutator->vtable->destroy(mutator);
socket_factory_posix.cc 33 const grpc_socket_factory_vtable* vtable) {
34 factory->vtable = vtable;
40 return factory->vtable->socket(factory, domain, type, protocol);
45 return factory->vtable->bind(factory, sockfd, addr);
54 c = GPR_ICMP(sma->vtable, smb->vtable);
56 c = sma->vtable->compare(sma, smb);
69 factory->vtable->destroy(factory);
iomgr_custom.cc 44 static grpc_iomgr_platform_vtable vtable = { variable
56 grpc_set_iomgr_platform_vtable(&vtable);
61 return &vtable;
pollset_custom.h 33 void grpc_custom_pollset_init(grpc_custom_poller_vtable* vtable);
  /external/grpc-grpc/src/core/tsi/
transport_security_grpc.cc 27 if (self == nullptr || self->vtable == nullptr || protector == nullptr) {
30 if (self->vtable->create_zero_copy_grpc_protector == nullptr) {
33 return self->vtable->create_zero_copy_grpc_protector(
44 if (self == nullptr || self->vtable == nullptr ||
48 if (self->vtable->protect == nullptr) return TSI_UNIMPLEMENTED;
49 return self->vtable->protect(self, unprotected_slices, protected_slices);
55 if (self == nullptr || self->vtable == nullptr ||
59 if (self->vtable->unprotect == nullptr) return TSI_UNIMPLEMENTED;
60 return self->vtable->unprotect(self, protected_slices, unprotected_slices);
65 self->vtable->destroy(self)
    [all...]
transport_security.cc 79 if (self == nullptr || self->vtable == nullptr ||
85 if (self->vtable->protect == nullptr) return TSI_UNIMPLEMENTED;
86 return self->vtable->protect(self, unprotected_bytes, unprotected_bytes_size,
94 if (self == nullptr || self->vtable == nullptr ||
100 if (self->vtable->protect_flush == nullptr) return TSI_UNIMPLEMENTED;
101 return self->vtable->protect_flush(self, protected_output_frames,
110 if (self == nullptr || self->vtable == nullptr ||
116 if (self->vtable->unprotect == nullptr) return TSI_UNIMPLEMENTED;
117 return self->vtable->unprotect(self, protected_frames_bytes,
124 self->vtable->destroy(self)
    [all...]
  /external/deqp-deps/SPIRV-Tools/test/opt/
value_table_test.cpp 52 ValueNumberTable vtable(context.get());
54 EXPECT_EQ(vtable.GetValueNumber(inst), vtable.GetValueNumber(inst));
79 ValueNumberTable vtable(context.get());
82 EXPECT_EQ(vtable.GetValueNumber(inst1), vtable.GetValueNumber(inst2));
109 ValueNumberTable vtable(context.get());
112 EXPECT_EQ(vtable.GetValueNumber(inst1), vtable.GetValueNumber(inst2));
137 ValueNumberTable vtable(context.get())
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/test/opt/
value_table_test.cpp 52 ValueNumberTable vtable(context.get());
54 EXPECT_EQ(vtable.GetValueNumber(inst), vtable.GetValueNumber(inst));
79 ValueNumberTable vtable(context.get());
82 EXPECT_EQ(vtable.GetValueNumber(inst1), vtable.GetValueNumber(inst2));
109 ValueNumberTable vtable(context.get());
112 EXPECT_EQ(vtable.GetValueNumber(inst1), vtable.GetValueNumber(inst2));
137 ValueNumberTable vtable(context.get())
    [all...]
  /external/grpc-grpc/src/core/tsi/alts/frame_protector/
alts_crypter.cc 37 if (crypter != nullptr && crypter->vtable != nullptr &&
38 crypter->vtable->process_in_place != nullptr) {
39 return crypter->vtable->process_in_place(crypter, data, data_allocated_size,
45 "crypter or crypter->vtable has not been initialized properly.";
51 if (crypter != nullptr && crypter->vtable != nullptr &&
52 crypter->vtable->num_overhead_bytes != nullptr) {
53 return crypter->vtable->num_overhead_bytes(crypter);
61 if (crypter->vtable != nullptr && crypter->vtable->destruct != nullptr) {
62 crypter->vtable->destruct(crypter)
    [all...]
  /external/grpc-grpc/src/core/tsi/alts/crypt/
gsec.cc 29 "crypter or crypter->vtable has not been initialized properly";
44 if (crypter != nullptr && crypter->vtable != nullptr &&
45 crypter->vtable->encrypt_iovec != nullptr) {
50 return crypter->vtable->encrypt_iovec(
65 if (crypter != nullptr && crypter->vtable != nullptr &&
66 crypter->vtable->encrypt_iovec != nullptr) {
67 return crypter->vtable->encrypt_iovec(
82 if (crypter != nullptr && crypter->vtable != nullptr &&
83 crypter->vtable->decrypt_iovec != nullptr) {
88 return crypter->vtable->decrypt_iovec
    [all...]
  /external/grpc-grpc/src/core/lib/surface/
completion_queue_factory.h 35 grpc_completion_queue_factory_vtable* vtable; member in struct:grpc_completion_queue_factory
  /external/flatbuffers/go/
struct.go 5 // Structs do not have a vtable.

Completed in 727 milliseconds

1 2 3 4 5 6 7 8 9