Home
last modified time | relevance | path

Searched refs:proxy (Results 1 – 25 of 32) sorted by relevance

12

/system/media/alsa_utils/
Dalsa_device_proxy.c46 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/
Dalsa_device_proxy.h37 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/
DHidlTestJava.java597 IBase proxy = IBase.getService("this-doesn't-exist"); in client() local
609 IBase proxy = IBase.getService("this-doesn't-exist", true /*retry*/); in client() local
639 IBaz proxy = IBaz.getService(); in client() local
641 proxy.ping(); in client()
643 proxy.someBaseMethod(); in client()
646 Expect(proxy.interfaceDescriptor(), IBaz.kInterfaceName); in client()
651 IHwBinder binder = proxy.asBinder(); in client()
668 proxy.ping(); in client()
673 IHwBinder binder = proxy.asBinder(); in client()
686 proxy.ping(); in client()
[all …]
/system/libhwbinder/include/hwbinder/
DIPCThreadState.h77 void incStrongHandle(int32_t handle, BpHwBinder *proxy);
79 void incWeakHandle(int32_t handle, BpHwBinder *proxy);
84 BpHwBinder* proxy);
86 BpHwBinder* proxy);
/system/tools/aidl/
Dgenerate_java_binder.cpp583 auto proxy = std::make_shared<Method>(); in generate_proxy_method() local
584 proxy->comment = method.GetComments(); in generate_proxy_method()
585 proxy->modifiers = PUBLIC | OVERRIDE; in generate_proxy_method()
586 proxy->returnType = JavaSignatureOf(method.GetType(), typenames); in generate_proxy_method()
587 proxy->name = method.GetName(); in generate_proxy_method()
588 proxy->statements = std::make_shared<StatementBlock>(); in generate_proxy_method()
590 proxy->parameters.push_back( in generate_proxy_method()
593 proxy->exceptions.push_back("android.os.RemoteException"); in generate_proxy_method()
597 proxy->statements->Add(std::make_shared<VariableDeclaration>( in generate_proxy_method()
602 proxy->statements->Add(std::make_shared<VariableDeclaration>( in generate_proxy_method()
[all …]
Dgenerate_cpp.cpp424 const string proxy = ClassName(interface, ClassNames::CLIENT); in DefineClientMetaTransaction() local
430 code << "int32_t " << proxy << "::" << kGetInterfaceVersion << "() {\n" in DefineClientMetaTransaction()
451 const string proxy = ClassName(interface, ClassNames::CLIENT); in DefineClientMetaTransaction() local
453 code << "std::string " << proxy << "::" << kGetInterfaceHash << "() {\n" in DefineClientMetaTransaction()
/system/bt/binder/android/bluetooth/
DIBluetoothManager.aidl46 boolean bindBluetoothProfileService(int profile, IBluetoothProfileServiceConnection proxy); in bindBluetoothProfileService() argument
47 void unbindBluetoothProfileService(int profile, IBluetoothProfileServiceConnection proxy); in unbindBluetoothProfileService() argument
/system/libhwbinder/
DIPCThreadState.cpp689 void IPCThreadState::incStrongHandle(int32_t handle, BpHwBinder *proxy) in incStrongHandle() argument
695 proxy->incStrong(mProcess.get()); in incStrongHandle()
696 mPostWriteStrongDerefs.push(proxy); in incStrongHandle()
706 void IPCThreadState::incWeakHandle(int32_t handle, BpHwBinder *proxy) in incWeakHandle() argument
712 proxy->getWeakRefs()->incWeak(mProcess.get()); in incWeakHandle()
713 mPostWriteWeakDerefs.push(proxy->getWeakRefs()); in incWeakHandle()
755 status_t IPCThreadState::requestDeathNotification(int32_t handle, BpHwBinder* proxy) in requestDeathNotification() argument
759 mOut.writePointer((uintptr_t)proxy); in requestDeathNotification()
763 status_t IPCThreadState::clearDeathNotification(int32_t handle, BpHwBinder* proxy) in clearDeathNotification() argument
767 mOut.writePointer((uintptr_t)proxy); in clearDeathNotification()
[all …]
DParcel.cpp190 BpHwBinder *proxy = binder->remoteBinder(); in flatten_binder() local
191 if (proxy == nullptr) { in flatten_binder()
194 const int32_t handle = proxy ? proxy->handle() : 0; in flatten_binder()
/system/memory/libmemunreachable/
DPtracerThread.cpp96 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/update_engine/
Dlibcurl_http_fetcher.cc114 bool LibcurlHttpFetcher::GetProxyType(const string& proxy, in GetProxyType() argument
117 proxy, "socks5://", base::CompareCase::INSENSITIVE_ASCII) || in GetProxyType()
119 proxy, "socks://", base::CompareCase::INSENSITIVE_ASCII)) { in GetProxyType()
124 proxy, "socks4://", base::CompareCase::INSENSITIVE_ASCII)) { in GetProxyType()
129 proxy, "http://", base::CompareCase::INSENSITIVE_ASCII) || in GetProxyType()
131 proxy, "https://", base::CompareCase::INSENSITIVE_ASCII)) { in GetProxyType()
135 if (base::StartsWith(proxy, kNoProxy, base::CompareCase::INSENSITIVE_ASCII)) { in GetProxyType()
139 LOG(INFO) << "Unknown proxy type: " << proxy; in GetProxyType()
Dlibcurl_http_fetcher.h241 bool GetProxyType(const std::string& proxy, curl_proxytype* out_type);
/system/core/trusty/utils/spiproxyd/
DAndroid.bp29 "proxy.rc",
Dproxy.rc16 -s /dev/vport3p2 -p com.android.trusty.spi.proxy
/system/sepolicy/private/
Dautomotive_display_service.te1 # Display proxy service for Automotive
/system/core/trusty/storage/proxy/
DAndroid.bp25 "proxy.c",
/system/sepolicy/prebuilts/api/30.0/private/
Dautomotive_display_service.te1 # Display proxy service for Automotive
/system/core/trusty/utils/rpmb_dev/
Drpmb_dev.rc10 # Storage proxy
/system/update_engine/client-headers/
DBUILD.gn28 mock_output_file = "include/update_engine/dbus-proxy-mocks.h"
/system/core/gatekeeperd/
Dgatekeeperd.cpp398 android::sp<android::GateKeeperProxy> proxy = new android::GateKeeperProxy(); in main() local
400 android::String16("android.service.gatekeeper.IGateKeeperService"), proxy); in main()
/system/core/fs_mgr/
DAndroid.bp110 // or libfiemap is needed. In this case, libfiemap will proxy over binder to
/system/tools/xsdc/
DREADME.md5 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/
Dservice_contexts82 media.camera.proxy u:object_r:cameraproxy_service:s0
/system/sepolicy/prebuilts/api/27.0/private/
Dservice_contexts83 media.camera.proxy u:object_r:cameraproxy_service:s0
/system/sepolicy/prebuilts/api/28.0/private/
Dservice_contexts87 media.camera.proxy u:object_r:cameraproxy_service:s0

12