/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/ |
D | CMakeLists.txt | 36 add_pdb_impl_folder(Native 37 Native/DbiModuleDescriptor.cpp 38 Native/DbiModuleDescriptorBuilder.cpp 39 Native/DbiModuleList.cpp 40 Native/DbiStream.cpp 41 Native/DbiStreamBuilder.cpp 42 Native/EnumTables.cpp 43 Native/GlobalsStream.cpp 44 Native/Hash.cpp 45 Native/HashTable.cpp [all …]
|
D | PDB.cpp | 27 if (Type == PDB_ReaderType::Native) { in loadDataForPDB() 47 if (Type == PDB_ReaderType::Native) in loadDataForEXE()
|
/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 | 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 | 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 | 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()
|
D | CompletionQueueEvent.cs | 30 static readonly NativeMethods Native = NativeMethods.Get(); field 40 return Native.grpcsharp_sizeof_grpc_event();
|
/external/swiftshader/third_party/subzero/pydir/ |
D | gen_test_arith_ll.py | 20 def arith(Native, Type, Op): argument 37 Native != Type else '', 39 Native != Type else '', 41 ' {type} %result.trunc to {native}' if Native != Type else '') 42 lines = x.format(native=Native, type=Type, op=Op, name=Name, 43 trunc='.trunc' if Native != Type else '')
|
/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/libchrome/mojo/public/interfaces/bindings/tests/ |
D | test_native_types.mojom | 11 [Native] 14 [Native] 40 [Native] 43 [Native]
|
/external/grpc-grpc/src/csharp/Grpc.Microbenchmarks/ |
D | PInvokeByteArrayBenchmark.cs | 31 static readonly NativeMethods Native = NativeMethods.Get(); field in Grpc.Microbenchmarks.PInvokeByteArrayBenchmark 57 Native.grpcsharp_test_nop(payloadPtr); in ThreadBody()
|
D | SendMessageBenchmark.cs | 30 static readonly NativeMethods Native = NativeMethods.Get(); field in Grpc.Microbenchmarks.SendMessageBenchmark 36 Native.grpcsharp_test_override_method("grpcsharp_call_start_batch", "nop"); in Init()
|
/external/tcpdump/tests/ |
D | cdp-v.out | 13 Native VLAN ID (0x0a), value length: 2 bytes: 1 32 Native VLAN ID (0x0a), value length: 2 bytes: 1 51 Native VLAN ID (0x0a), value length: 2 bytes: 1
|
/external/swiftshader/third_party/subzero/ |
D | LICENSE.TXT | 12 Native Client Team 32 * Neither the names of the Native Client Team, Google Inc., nor the names of
|