/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/ |
D | CMakeLists.txt | 38 add_pdb_impl_folder(Native 39 Native/DbiModuleDescriptor.cpp 40 Native/DbiModuleDescriptorBuilder.cpp 41 Native/DbiModuleList.cpp 42 Native/DbiStream.cpp 43 Native/DbiStreamBuilder.cpp 44 Native/EnumTables.cpp 45 Native/GlobalsStream.cpp 46 Native/Hash.cpp 47 Native/HashTable.cpp [all …]
|
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/ |
D | ServerSafeHandle.cs | 26 static readonly NativeMethods Native = NativeMethods.Get(); field in Grpc.Core.Internal.ServerSafeHandle 37 return Native.grpcsharp_server_create(args); in NewServer() 44 Native.grpcsharp_server_register_completion_queue(this, cq); in RegisterCompletionQueue() 50 return Native.grpcsharp_server_add_insecure_http2_port(this, addr); in AddInsecurePort() 55 return Native.grpcsharp_server_add_secure_http2_port(this, addr, credentials); in AddSecurePort() 60 Native.grpcsharp_server_start(this); in Start() 70 Native.grpcsharp_server_shutdown_and_notify_callback(this, completionQueue, ctx); in ShutdownAndNotify() 79 Native.grpcsharp_server_request_call(this, completionQueue, ctx).CheckOk(); in RequestCall() 85 Native.grpcsharp_server_destroy(handle); in ReleaseHandle() 93 Native.grpcsharp_server_cancel_all_calls(this); in CancelAllCalls()
|
D | CallSafeHandle.cs | 33 static readonly NativeMethods Native = NativeMethods.Get(); field in Grpc.Core.Internal.CallSafeHandle 66 Native.grpcsharp_call_set_credentials(this, credentials).CheckOk(); in SetCredentials() 74 …Native.grpcsharp_call_start_unary(this, ctx, payload, new UIntPtr((ulong)payload.Length), writeFla… in StartUnary() 81 …Native.grpcsharp_call_start_unary(this, ctx, payload, new UIntPtr((ulong)payload.Length), writeFla… in StartUnary() 90 … Native.grpcsharp_call_start_client_streaming(this, ctx, metadataArray, callFlags).CheckOk(); in StartClientStreaming() 99 …Native.grpcsharp_call_start_server_streaming(this, ctx, payload, new UIntPtr((ulong)payload.Length… in StartServerStreaming() 108 … Native.grpcsharp_call_start_duplex_streaming(this, ctx, metadataArray, callFlags).CheckOk(); in StartDuplexStreaming() 117 …Native.grpcsharp_call_send_message(this, ctx, payload, new UIntPtr((ulong)payload.Length), writeFl… in StartSendMessage() 126 Native.grpcsharp_call_send_close_from_client(this, ctx).CheckOk(); in StartSendCloseFromClient() 138 …Native.grpcsharp_call_send_status_from_server(this, ctx, status.StatusCode, statusDetailBytes, new… in StartSendStatusFromServer() [all …]
|
D | BatchContextSafeHandle.cs | 38 static readonly NativeMethods Native = NativeMethods.Get(); field in Grpc.Core.Internal.BatchContextSafeHandle 50 var ctx = Native.grpcsharp_batch_context_create(); in Create() 78 IntPtr metadataArrayPtr = Native.grpcsharp_batch_context_recv_initial_metadata(this); in GetReceivedInitialMetadata() 86 …IntPtr detailsPtr = Native.grpcsharp_batch_context_recv_status_on_client_details(this, out details… in GetReceivedStatusOnClient() 88 …var status = new Status(Native.grpcsharp_batch_context_recv_status_on_client_status(this), details… in GetReceivedStatusOnClient() 90 …IntPtr metadataArrayPtr = Native.grpcsharp_batch_context_recv_status_on_client_trailing_metadata(t… in GetReceivedStatusOnClient() 99 IntPtr len = Native.grpcsharp_batch_context_recv_message_length(this); in GetReceivedMessage() 105 …Native.grpcsharp_batch_context_recv_message_to_buffer(this, data, new UIntPtr((ulong)data.Length)); in GetReceivedMessage() 112 return Native.grpcsharp_batch_context_recv_close_on_server_cancelled(this) != 0; in GetReceivedCloseOnServerCancelled() 119 Native.grpcsharp_batch_context_reset(this); in Recycle() [all …]
|
D | RequestCallContextSafeHandle.cs | 32 static readonly NativeMethods Native = NativeMethods.Get(); field in Grpc.Core.Internal.RequestCallContextSafeHandle 42 var ctx = Native.grpcsharp_request_call_context_create(); in Create() 65 var call = Native.grpcsharp_request_call_context_call(this); in GetServerRpcNew() 68 IntPtr methodPtr = Native.grpcsharp_request_call_context_method(this, out methodLen); in GetServerRpcNew() 72 IntPtr hostPtr = Native.grpcsharp_request_call_context_host(this, out hostLen); in GetServerRpcNew() 75 var deadline = Native.grpcsharp_request_call_context_deadline(this); in GetServerRpcNew() 77 IntPtr metadataArrayPtr = Native.grpcsharp_request_call_context_request_metadata(this); in GetServerRpcNew() 87 Native.grpcsharp_request_call_context_reset(this); in Recycle() 103 Native.grpcsharp_request_call_context_destroy(handle); in ReleaseHandle()
|
D | ChannelSafeHandle.cs | 29 static readonly NativeMethods Native = NativeMethods.Get(); field in Grpc.Core.Internal.ChannelSafeHandle 40 return Native.grpcsharp_insecure_channel_create(target, channelArgs); in CreateInsecure() 48 return Native.grpcsharp_secure_channel_create(credentials, target, channelArgs); in CreateSecure() 53 …var result = Native.grpcsharp_channel_create_call(this, parentCall, propagationMask, cq, method, h… in CreateCall() 64 return Native.grpcsharp_channel_check_connectivity_state(this, tryToConnect ? 1 : 0); in CheckConnectivityState() 70 … Native.grpcsharp_channel_watch_connectivity_state(this, lastObservedState, deadline, cq, ctx); in WatchConnectivityState() 75 using (var cstring = Native.grpcsharp_channel_get_target(this)) in GetTarget() 83 Native.grpcsharp_channel_destroy(handle); in ReleaseHandle()
|
D | CompletionQueueSafeHandle.cs | 30 static readonly NativeMethods Native = NativeMethods.Get(); field in Grpc.Core.Internal.CompletionQueueSafeHandle 44 return Native.grpcsharp_completion_queue_create_sync(); in CreateSync() 52 var cq = Native.grpcsharp_completion_queue_create_async(); in CreateAsync() 59 return Native.grpcsharp_completion_queue_next(this); in Next() 64 return Native.grpcsharp_completion_queue_pluck(this, tag); in Pluck() 92 Native.grpcsharp_completion_queue_destroy(handle); in ReleaseHandle() 100 Native.grpcsharp_completion_queue_shutdown(this); in DecrementShutdownRefcount()
|
D | MetadataArraySafeHandle.cs | 28 static readonly NativeMethods Native = NativeMethods.Get(); field in Grpc.Core.Internal.MetadataArraySafeHandle 42 … var metadataArray = Native.grpcsharp_metadata_array_create(new UIntPtr((ulong)metadata.Count)); in Create() 46 …Native.grpcsharp_metadata_array_add(metadataArray, metadata[i].Key, valueBytes, new UIntPtr((ulong… in Create() 61 ulong count = Native.grpcsharp_metadata_array_count(metadataArray).ToUInt64(); in ReadMetadataFromPtrUnsafe() 68 … IntPtr keyPtr = Native.grpcsharp_metadata_array_get_key(metadataArray, index, out keyLen); in ReadMetadataFromPtrUnsafe() 71 … IntPtr valuePtr = Native.grpcsharp_metadata_array_get_value(metadataArray, index, out valueLen); in ReadMetadataFromPtrUnsafe() 89 Native.grpcsharp_metadata_array_destroy_full(handle); in ReleaseHandle()
|
D | ChannelArgsSafeHandle.cs | 27 static readonly NativeMethods Native = NativeMethods.Get(); field in Grpc.Core.Internal.ChannelArgsSafeHandle 40 return Native.grpcsharp_channel_args_create(new UIntPtr((uint)size)); in Create() 45 Native.grpcsharp_channel_args_set_string(this, new UIntPtr((uint)index), key, value); in SetString() 50 Native.grpcsharp_channel_args_set_integer(this, new UIntPtr((uint)index), key, value); in SetInteger() 55 Native.grpcsharp_channel_args_destroy(handle); in ReleaseHandle()
|
D | ChannelCredentialsSafeHandle.cs | 28 static readonly NativeMethods Native = NativeMethods.Get(); field in Grpc.Core.Internal.ChannelCredentialsSafeHandle 45 …return Native.grpcsharp_ssl_credentials_create(pemRootCerts, keyCertPair.CertificateChain, keyCert… in CreateSslCredentials() 49 return Native.grpcsharp_ssl_credentials_create(pemRootCerts, null, null); in CreateSslCredentials() 55 return Native.grpcsharp_composite_channel_credentials_create(channelCreds, callCreds); in CreateComposite() 60 Native.grpcsharp_channel_credentials_release(handle); in ReleaseHandle()
|
D | Timespec.cs | 34 static readonly NativeMethods Native = NativeMethods.Get(); field 81 return Native.gprsharp_now(ClockType.Realtime); 112 return Native.gprsharp_convert_clock_type(this, targetClock); in ToClockType() 215 return Native.gprsharp_now(ClockType.Precise); 224 return Native.gprsharp_sizeof_timespec(); 233 return Native.gprsharp_inf_future(ClockType.Realtime); 242 return Native.gprsharp_inf_past(ClockType.Realtime);
|
D | AuthContextSafeHandle.cs | 33 static readonly NativeMethods Native = NativeMethods.Get(); field in Grpc.Core.Internal.AuthContextSafeHandle 49 …var peerIdentityPropertyName = Marshal.PtrToStringAnsi(Native.grpcsharp_auth_context_peer_identity… in ToAuthContext() 53 var it = Native.grpcsharp_auth_context_property_iterator(this); in ToAuthContext() 55 … while ((authPropertyPtr = Native.grpcsharp_auth_property_iterator_next(ref it)) != IntPtr.Zero) in ToAuthContext() 71 Native.grpcsharp_auth_context_release(handle); in ReleaseHandle()
|
D | CallCredentialsSafeHandle.cs | 28 static readonly NativeMethods Native = NativeMethods.Get(); field in Grpc.Core.Internal.CallCredentialsSafeHandle 36 return Native.grpcsharp_composite_call_credentials_create(creds1, creds2); in CreateComposite() 41 Native.grpcsharp_call_credentials_release(handle); in ReleaseHandle()
|
D | NativeMetadataCredentialsPlugin.cs | 33 static readonly NativeMethods Native = NativeMethods.Get(); field in Grpc.Core.Internal.NativeMetadataCredentialsPlugin 47 … this.credentials = Native.grpcsharp_metadata_credentials_create_from_plugin(nativeInterceptor); in NativeMetadataCredentialsPlugin() 85 …Native.grpcsharp_metadata_credentials_notify_from_plugin(callbackPtr, userDataPtr, metadataArray, … in GetMetadataAsync() 91 …Native.grpcsharp_metadata_credentials_notify_from_plugin(callbackPtr, userDataPtr, MetadataArraySa… in GetMetadataAsync()
|
D | ServerCredentialsSafeHandle.cs | 29 static readonly NativeMethods Native = NativeMethods.Get(); field in Grpc.Core.Internal.ServerCredentialsSafeHandle 38 return Native.grpcsharp_ssl_server_credentials_create(pemRootCerts, in CreateSslCredentials() 46 Native.grpcsharp_server_credentials_release(handle); in ReleaseHandle()
|
D | CStringSafeHandle.cs | 27 static readonly NativeMethods Native = NativeMethods.Get(); field in Grpc.Core.Internal.CStringSafeHandle 40 Native.gprsharp_free(handle); in ReleaseHandle()
|
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/ |
D | PInvokeTest.cs | 33 static readonly NativeMethods Native = NativeMethods.Get(); field in Grpc.Core.Tests.PInvokeTest 73 Native.grpcsharp_test_callback(handler); in NativeCallbackBenchmark() 94 Native.grpcsharp_test_callback(new NativeCallbackTestDelegate(Handler)); in NewNativeCallbackBenchmark() 112 Native.grpcsharp_test_nop(IntPtr.Zero); in NopPInvokeBenchmark()
|
/external/flatbuffers/tests/ |
D | native_type_test_impl.cpp | 6 Geometry::Vector3D Pack(const Native::Vector3D &obj) { in Pack() 10 const Native::Vector3D UnPack(const Geometry::Vector3D &obj) { in UnPack() 11 return Native::Vector3D(obj.x(), obj.y(), obj.z()); in UnPack()
|
D | native_type_test_impl.h | 4 namespace Native { 28 Geometry::Vector3D Pack(const Native::Vector3D &obj); 29 const Native::Vector3D UnPack(const Geometry::Vector3D &obj);
|
/external/libchrome/mojo/public/interfaces/bindings/tests/ |
D | test_native_types.mojom | 11 [Native] 14 [Native] 40 [Native] 43 [Native]
|
/external/kotlinx.atomicfu/ |
D | CHANGES.md | 52 * Freezable atomics on Kotlin/Native. 139 * Kotlin version 1.3.0-rc-57 & Kotlin/Native 0.9.2 143 * Kotlin/Native version 1.3.0-rc-116 (0.9.3) 154 * Kotlin/Native version 0.9 173 * Kotlin/Native version 0.8.2 180 * Kotlin/Native version 0.8.1 185 * Kotlin/Native 0.9-dev-2922, all platforms, published to Maven Central 190 * Initial Kotlin/Native support: 191 * Build for Kotlin/Native 0.8.
|
/external/tensorflow/tensorflow/lite/java/src/main/native/ |
D | BUILD | 2 # Java Native Interface (JNI) library intended for implementing the 20 # Native code needed for TF Lite Java API, including experimental APIs; 38 # Native code needed for TF Lite Java API, excluding experimental APIs; 78 # Native code and ops needed for the TF Lite Java API, including experimental 96 # Native code and ops needed for the TF Lite Java API, excluding experimental
|
/external/rust/crates/nom/src/number/ |
D | complete.rs | 781 crate::number::Endianness::Native => be_u16, in u16() 783 crate::number::Endianness::Native => le_u16, in u16() 820 crate::number::Endianness::Native => be_u24, in u24() 822 crate::number::Endianness::Native => le_u24, in u24() 859 crate::number::Endianness::Native => be_u32, in u32() 861 crate::number::Endianness::Native => le_u32, in u32() 898 crate::number::Endianness::Native => be_u64, in u64() 900 crate::number::Endianness::Native => le_u64, in u64() 938 crate::number::Endianness::Native => be_u128, in u128() 940 crate::number::Endianness::Native => le_u128, in u128() [all …]
|
D | streaming.rs | 755 crate::number::Endianness::Native => be_u16, in u16() 757 crate::number::Endianness::Native => le_u16, in u16() 794 crate::number::Endianness::Native => be_u24, in u24() 796 crate::number::Endianness::Native => le_u24, in u24() 833 crate::number::Endianness::Native => be_u32, in u32() 835 crate::number::Endianness::Native => le_u32, in u32() 872 crate::number::Endianness::Native => be_u64, in u64() 874 crate::number::Endianness::Native => le_u64, in u64() 912 crate::number::Endianness::Native => be_u128, in u128() 914 crate::number::Endianness::Native => le_u128, in u128() [all …]
|
/external/libchrome/base/android/jni_generator/ |
D | README.md | 2 JNI (Java Native Interface) is the mechanism that enables Java code to call 5 * Native code calls into Java using apis from `<jni.h>`, which basically mirror 24 ### Exposing Native Methods 27 * Java->Native calls are exported from the shared library and lazily resolved 31 * Java->Native calls are explicitly registered with JNI on the native side. 59 ### Calling Java -> Native 67 ### Calling Native -> Java
|