Home
last modified time | relevance | path

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

12

/system/media/alsa_utils/
Dalsa_device_proxy.c42 void proxy_prepare(alsa_device_proxy * proxy, alsa_device_profile* profile, in proxy_prepare() argument
47 proxy->profile = profile; in proxy_prepare()
54 proxy->alsa_config.format = config->format; in proxy_prepare()
58 proxy->alsa_config.format = profile->default_config.format; in proxy_prepare()
62 proxy->alsa_config.rate = config->rate; in proxy_prepare()
66 proxy->alsa_config.rate = profile->default_config.rate; in proxy_prepare()
70 proxy->alsa_config.channels = config->channels; in proxy_prepare()
72 proxy->alsa_config.channels = profile_get_closest_channel_count(profile, config->channels); in proxy_prepare()
74 config->channels, proxy->alsa_config.channels); in proxy_prepare()
77 proxy->alsa_config.period_count = profile->default_config.period_count; in proxy_prepare()
[all …]
/system/media/alsa_utils/include/
Dalsa_device_proxy.h37 void proxy_prepare(alsa_device_proxy * proxy, 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,
45 unsigned proxy_get_sample_rate(const alsa_device_proxy * proxy);
46 enum pcm_format proxy_get_format(const alsa_device_proxy * proxy);
47 unsigned proxy_get_channel_count(const alsa_device_proxy * proxy);
48 unsigned int proxy_get_period_size(const alsa_device_proxy * proxy);
49 unsigned proxy_get_latency(const alsa_device_proxy * proxy);
52 int proxy_write(alsa_device_proxy * proxy, const void *data, unsigned int count);
[all …]
/system/connectivity/shill/test-rpc-proxy/
Dproxy_dbus_client.cc30 Proxy* proxy, in GetPropertyValueFromProxy() argument
36 CHECK(proxy->GetProperties(&proxy_properties, &error)); in GetPropertyValueFromProxy()
45 Proxy* proxy, in IsProxyPropertyValueIn() argument
54 if ((GetPropertyValueFromProxy<Proxy>(proxy, property_name, &property_value)) && in IsProxyPropertyValueIn()
96 Proxy* proxy, in HelpRegisterPropertyChangedSignalHandler() argument
101 proxy->RegisterPropertyChangedSignalHandler( in HelpRegisterPropertyChangedSignalHandler()
209 DeviceProxy* proxy, in GetPropertyValueFromDeviceProxy() argument
213 proxy, property_name, property_value); in GetPropertyValueFromDeviceProxy()
217 ServiceProxy* proxy, in GetPropertyValueFromServiceProxy() argument
221 proxy, property_name, property_value); in GetPropertyValueFromServiceProxy()
[all …]
Dproxy_dbus_client.h67 bool GetPropertyValueFromDeviceProxy(DeviceProxy* proxy,
70 bool GetPropertyValueFromServiceProxy(ServiceProxy* proxy,
73 bool GetPropertyValueFromProfileProxy(ProfileProxy* proxy,
/system/tools/aidl/
Dgenerate_java_binder.cpp384 Method* proxy = new Method; in generate_method() local
385 proxy->comment = method.GetComments(); in generate_method()
386 proxy->modifiers = PUBLIC | OVERRIDE; in generate_method()
387 proxy->returnType = method.GetType().GetLanguageType<Type>(); in generate_method()
388 proxy->returnTypeDimension = method.GetType().IsArray() ? 1 : 0; in generate_method()
389 proxy->name = method.GetName(); in generate_method()
390 proxy->statements = new StatementBlock; in generate_method()
392 proxy->parameters.push_back( in generate_method()
396 proxy->exceptions.push_back(types->RemoteExceptionType()); in generate_method()
397 proxyClass->elements.push_back(proxy); in generate_method()
[all …]
/system/webservd/libwebserv/
Ddbus_protocol_handler.cc160 void DBusProtocolHandler::Connect(ProtocolHandlerProxyInterface* proxy) { in Connect() argument
161 proxies_.emplace(proxy->GetObjectPath(), proxy); in Connect()
163 proxy->AddRequestHandlerAsync( in Connect()
170 proxy), in Connect()
187 ProtocolHandlerProxyInterface* proxy, in AddHandlerSuccess() argument
191 p->second.remote_handler_ids.emplace(proxy, remote_handler_id); in AddHandlerSuccess()
236 ProtocolHandlerProxyInterface* proxy = in CompleteRequest() local
238 if (!proxy) in CompleteRequest()
249 proxy->CompleteRequestAsync( in CompleteRequest()
260 ProtocolHandlerProxyInterface* proxy = in GetFileData() local
[all …]
Ddbus_protocol_handler.h95 void Connect(ProtocolHandlerProxyInterface* proxy);
105 ProtocolHandlerProxyInterface* proxy,
/system/core/crash_reporter/
Dcrash_sender454 local proxy ret
455 proxy=$("${LIST_PROXIES}" --quiet "${url}")
458 proxy=''
461 proxy=$(echo "${proxy}" | head -1)
465 [ "${proxy}" = "direct://" ] && proxy=
470 curl "${url}" -f -v ${proxy:+--proxy "$proxy"} \
Dlist_proxies.cc250 for (const auto& proxy : proxies) { in ShowBrowserProxies() local
251 printf("%s\n", proxy.c_str()); in ShowBrowserProxies()
/system/connectivity/shill/wimax/
Dwimax_service.cc107 bool WiMaxService::Start(WiMaxNetworkProxyInterface* proxy) { in Start() argument
109 CHECK(proxy); in Start()
110 std::unique_ptr<WiMaxNetworkProxyInterface> local_proxy(proxy); in Start()
119 network_name_ = proxy->Name(&error); in Start()
123 uint32_t identifier = proxy->Identifier(&error); in Start()
133 int signal_strength = proxy->SignalStrength(&error); in Start()
138 proxy->set_signal_strength_changed_callback( in Start()
Dmock_wimax_service.h35 MOCK_METHOD1(Start, bool(WiMaxNetworkProxyInterface* proxy));
Dwimax_service.h58 virtual bool Start(WiMaxNetworkProxyInterface* proxy);
/system/core/fingerprintd/
Dfingerprintd.cpp39 android::sp<android::FingerprintDaemonProxy> proxy = in main() local
42 android::FingerprintDaemonProxy::descriptor, proxy); in main()
/system/webservd/webservd/
Dfirewalld_firewall.cc41 org::chromium::FirewalldProxyInterface* proxy) { in OnFirewalldOnline() argument
42 proxy_ = proxy; in OnFirewalldOnline()
Dpermission_broker_firewall.cc61 org::chromium::PermissionBrokerProxyInterface* proxy) { in OnPermissionBrokerOnline() argument
62 proxy_ = proxy; in OnPermissionBrokerOnline()
Dfirewalld_firewall.h43 void OnFirewalldOnline(org::chromium::FirewalldProxyInterface* proxy);
Dpermission_broker_firewall.h44 org::chromium::PermissionBrokerProxyInterface* proxy);
/system/connectivity/shill/shims/
Dopenvpn_script.cc54 shill::shims::TaskProxy proxy(bus, path, service); in main() local
56 proxy.Notify(reason, env); in main()
/system/update_engine/
Dlibcurl_http_fetcher.cc64 bool LibcurlHttpFetcher::GetProxyType(const string& proxy, in GetProxyType() argument
67 proxy, "socks5://", base::CompareCase::INSENSITIVE_ASCII) || in GetProxyType()
69 proxy, "socks://", base::CompareCase::INSENSITIVE_ASCII)) { in GetProxyType()
74 proxy, "socks4://", base::CompareCase::INSENSITIVE_ASCII)) { in GetProxyType()
79 proxy, "http://", base::CompareCase::INSENSITIVE_ASCII) || in GetProxyType()
81 proxy, "https://", base::CompareCase::INSENSITIVE_ASCII)) { in GetProxyType()
85 if (base::StartsWith(proxy, kNoProxy, base::CompareCase::INSENSITIVE_ASCII)) { in GetProxyType()
89 LOG(INFO) << "Unknown proxy type: " << proxy; in GetProxyType()
Dupdate_engine-client.gyp30 'mock_output_file': 'include/update_engine/dbus-proxy-mocks.h',
/system/core/libmemunreachable/
DPtracerThread.cpp96 auto proxy = [](void *arg) -> int { in Start() local
101 child_pid_ = clone(proxy, stack_->top(), in Start()
/system/connectivity/shill/
Dshill-client.gyp14 'mock_output_file': 'include/shill/dbus-proxy-mocks.h',
34 'xml2cpp_type': 'proxy',
/system/update_engine/include/
Dupdate_includes.sh49 ${DBUS_GENERATOR} "${xmls[@]}" --mock="${mockh}" --proxy="${proxyh}"
/system/weaved/libweaved/
Dcommand.cc55 Command::Command(const android::sp<android::weave::IWeaveCommand>& proxy) in Command() argument
56 : binder_proxy_{proxy} {} in Command()
Dcommand.h140 explicit Command(const android::sp<android::weave::IWeaveCommand>& proxy);

12