/system/media/alsa_utils/ |
D | alsa_device_proxy.c | 46 int proxy_prepare(alsa_device_proxy * proxy, const alsa_device_profile* profile, in proxy_prepare() argument 53 proxy->profile = profile; in proxy_prepare() 60 proxy->alsa_config.format = config->format; in proxy_prepare() 62 proxy->alsa_config.format = profile->default_config.format; in proxy_prepare() 72 proxy->alsa_config.rate = config->rate; in proxy_prepare() 74 proxy->alsa_config.rate = profile->default_config.rate; in proxy_prepare() 84 proxy->alsa_config.channels = config->channels; in proxy_prepare() 86 proxy->alsa_config.channels = profile_get_closest_channel_count(profile, config->channels); in proxy_prepare() 88 config->channels, proxy->alsa_config.channels); in proxy_prepare() 95 proxy->alsa_config.period_count = profile->default_config.period_count; in proxy_prepare() [all …]
|
/system/media/alsa_utils/include/ |
D | alsa_device_proxy.h | 37 int proxy_prepare(alsa_device_proxy * proxy, const alsa_device_profile * profile, 39 int proxy_open(alsa_device_proxy * proxy); 40 void proxy_close(alsa_device_proxy * proxy); 41 int proxy_get_presentation_position(const alsa_device_proxy * proxy, 43 int proxy_get_capture_position(const alsa_device_proxy * proxy, 47 unsigned proxy_get_sample_rate(const alsa_device_proxy * proxy); 48 enum pcm_format proxy_get_format(const alsa_device_proxy * proxy); 49 unsigned proxy_get_channel_count(const alsa_device_proxy * proxy); 50 unsigned int proxy_get_period_size(const alsa_device_proxy * proxy); 51 unsigned proxy_get_latency(const alsa_device_proxy * proxy); [all …]
|
/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/ |
D | HidlTestJava.java | 539 IBase proxy = IBase.getService("this-doesn't-exist"); in client() local 569 IBaz proxy = IBaz.getService(); in client() local 571 proxy.ping(); in client() 573 proxy.someBaseMethod(); in client() 576 Expect(proxy.interfaceDescriptor(), IBaz.kInterfaceName); in client() 593 IBase.Foo result = proxy.someOtherBaseMethod(foo); in client() 634 IBase.Foo[] outputArray = proxy.someMethodWithFooArrays(inputArray); in client() 677 proxy.someMethodWithFooVectors(inputVec); in client() 702 IBase.VectorOfArray out = proxy.someMethodWithVectorOfArray(in); in client() 726 ArrayList<byte[]> out = proxy.someMethodTakingAVectorOfArray(in); in client() [all …]
|
/system/libhwbinder/include/hwbinder/ |
D | IPCThreadState.h | 79 void incStrongHandle(int32_t handle, BpHwBinder *proxy); 81 void incWeakHandle(int32_t handle, BpHwBinder *proxy); 86 BpHwBinder* proxy); 88 BpHwBinder* proxy);
|
/system/tools/aidl/ |
D | generate_java_binder.cpp | 595 std::unique_ptr<Method> proxy(new Method); in generate_proxy_method() local 596 proxy->comment = method.GetComments(); in generate_proxy_method() 597 proxy->modifiers = PUBLIC | OVERRIDE; in generate_proxy_method() 598 proxy->returnType = method.GetType().GetLanguageType<Type>()->JavaType(); in generate_proxy_method() 599 proxy->returnTypeDimension = method.GetType().IsArray() ? 1 : 0; in generate_proxy_method() 600 proxy->name = method.GetName(); in generate_proxy_method() 601 proxy->statements = new StatementBlock; in generate_proxy_method() 603 proxy->parameters.push_back(new Variable(arg->GetType().GetLanguageType<Type>()->JavaType(), in generate_proxy_method() 606 proxy->exceptions.push_back(types->RemoteExceptionType()->JavaType()); in generate_proxy_method() 610 proxy->statements->Add( in generate_proxy_method() [all …]
|
D | type_java.cpp | 222 const Type* stub, const Type* proxy, const Type* defaultImpl) in InterfaceType() argument 227 proxy_(proxy), in InterfaceType() 331 auto proxy = std::make_unique<Type>(this, b.GetPackage(), b.GetName() + ".Stub.Proxy", in AddBinderType() local 336 -1, stub.get(), proxy.get(), defaultImpl.get()); in AddBinderType() 341 success &= Add(std::move(proxy)); in AddBinderType()
|
D | type_java.h | 252 const Type* proxy, const Type* defaultImpl);
|
D | generate_cpp.cpp | 404 const string proxy = ClassName(interface, ClassNames::CLIENT); in DefineClientMetaTransaction() local 410 code << "int32_t " << proxy << "::" << kGetInterfaceVersion << "() {\n" in DefineClientMetaTransaction()
|
/system/bt/binder/android/bluetooth/ |
D | IBluetoothManager.aidl | 43 boolean bindBluetoothProfileService(int profile, IBluetoothProfileServiceConnection proxy); in bindBluetoothProfileService() argument 44 void unbindBluetoothProfileService(int profile, IBluetoothProfileServiceConnection proxy); in unbindBluetoothProfileService() argument
|
/system/libhwbinder/ |
D | IPCThreadState.cpp | 692 void IPCThreadState::incStrongHandle(int32_t handle, BpHwBinder *proxy) in incStrongHandle() argument 698 proxy->incStrong(mProcess.get()); in incStrongHandle() 699 mPostWriteStrongDerefs.push(proxy); in incStrongHandle() 709 void IPCThreadState::incWeakHandle(int32_t handle, BpHwBinder *proxy) in incWeakHandle() argument 715 proxy->getWeakRefs()->incWeak(mProcess.get()); in incWeakHandle() 716 mPostWriteWeakDerefs.push(proxy->getWeakRefs()); in incWeakHandle() 758 status_t IPCThreadState::requestDeathNotification(int32_t handle, BpHwBinder* proxy) in requestDeathNotification() argument 762 mOut.writePointer((uintptr_t)proxy); in requestDeathNotification() 766 status_t IPCThreadState::clearDeathNotification(int32_t handle, BpHwBinder* proxy) in clearDeathNotification() argument 770 mOut.writePointer((uintptr_t)proxy); in clearDeathNotification() [all …]
|
D | Parcel.cpp | 196 BpHwBinder *proxy = binder->remoteBinder(); in flatten_binder() local 197 if (proxy == nullptr) { in flatten_binder() 200 const int32_t handle = proxy ? proxy->handle() : 0; in flatten_binder() 241 BpHwBinder *proxy = real->remoteBinder(); in flatten_binder() local 242 if (proxy == nullptr) { in flatten_binder() 245 const int32_t handle = proxy ? proxy->handle() : 0; in flatten_binder()
|
/system/update_engine/ |
D | libcurl_http_fetcher.cc | 116 bool LibcurlHttpFetcher::GetProxyType(const string& proxy, in GetProxyType() argument 119 proxy, "socks5://", base::CompareCase::INSENSITIVE_ASCII) || in GetProxyType() 121 proxy, "socks://", base::CompareCase::INSENSITIVE_ASCII)) { in GetProxyType() 126 proxy, "socks4://", base::CompareCase::INSENSITIVE_ASCII)) { in GetProxyType() 131 proxy, "http://", base::CompareCase::INSENSITIVE_ASCII) || in GetProxyType() 133 proxy, "https://", base::CompareCase::INSENSITIVE_ASCII)) { in GetProxyType() 137 if (base::StartsWith(proxy, kNoProxy, base::CompareCase::INSENSITIVE_ASCII)) { in GetProxyType() 141 LOG(INFO) << "Unknown proxy type: " << proxy; in GetProxyType()
|
D | update_engine-client.gyp | 30 'mock_output_file': 'include/update_engine/dbus-proxy-mocks.h',
|
D | libcurl_http_fetcher.h | 184 bool GetProxyType(const std::string& proxy, curl_proxytype* out_type);
|
D | update_engine.gyp | 109 'mock_output_file': 'include/kiosk-app/dbus-proxy-mocks.h',
|
/system/core/libmemunreachable/ |
D | PtracerThread.cpp | 96 auto proxy = [](void* arg) -> int { in Start() local 102 child_pid_ = clone(proxy, stack_->top(), CLONE_VM | CLONE_FS | CLONE_FILES /*|CLONE_UNTRACED*/, in Start()
|
/system/core/trusty/storage/proxy/ |
D | Android.bp | 25 "proxy.c",
|
/system/core/gatekeeperd/ |
D | gatekeeperd.cpp | 433 android::sp<android::GateKeeperProxy> proxy = new android::GateKeeperProxy(); in main() local 435 android::String16("android.service.gatekeeper.IGateKeeperService"), proxy); in main()
|
/system/tools/xsdc/ |
D | README.md | 5 The Java APIs in the current.txt file are not Java APIs for apps. It's a proxy
|
/system/sepolicy/prebuilts/api/26.0/private/ |
D | service_contexts | 82 media.camera.proxy u:object_r:cameraproxy_service:s0
|
/system/sepolicy/prebuilts/api/27.0/private/ |
D | service_contexts | 83 media.camera.proxy u:object_r:cameraproxy_service:s0
|
/system/sepolicy/prebuilts/api/28.0/private/ |
D | service_contexts | 87 media.camera.proxy u:object_r:cameraproxy_service:s0
|
/system/sepolicy/prebuilts/api/29.0/private/ |
D | service_contexts | 110 media.camera.proxy u:object_r:cameraproxy_service:s0
|
/system/sepolicy/private/ |
D | service_contexts | 110 media.camera.proxy u:object_r:cameraproxy_service:s0
|
/system/tools/aidl/docs/ |
D | aidl-cpp.md | 18 Previously, the _aidl generator_ only generated Java interface/stub/proxy
|