/system/media/alsa_utils/ |
D | alsa_device_proxy.c | 42 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/ |
D | alsa_device_proxy.h | 37 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/ |
D | proxy_dbus_client.cc | 30 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 …]
|
D | proxy_dbus_client.h | 67 bool GetPropertyValueFromDeviceProxy(DeviceProxy* proxy, 70 bool GetPropertyValueFromServiceProxy(ServiceProxy* proxy, 73 bool GetPropertyValueFromProfileProxy(ProfileProxy* proxy,
|
/system/tools/aidl/ |
D | generate_java_binder.cpp | 384 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/ |
D | dbus_protocol_handler.cc | 160 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 …]
|
D | dbus_protocol_handler.h | 95 void Connect(ProtocolHandlerProxyInterface* proxy); 105 ProtocolHandlerProxyInterface* proxy,
|
/system/core/crash_reporter/ |
D | crash_sender | 454 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"} \
|
D | list_proxies.cc | 250 for (const auto& proxy : proxies) { in ShowBrowserProxies() local 251 printf("%s\n", proxy.c_str()); in ShowBrowserProxies()
|
/system/connectivity/shill/wimax/ |
D | wimax_service.cc | 107 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()
|
D | mock_wimax_service.h | 35 MOCK_METHOD1(Start, bool(WiMaxNetworkProxyInterface* proxy));
|
D | wimax_service.h | 58 virtual bool Start(WiMaxNetworkProxyInterface* proxy);
|
/system/core/fingerprintd/ |
D | fingerprintd.cpp | 39 android::sp<android::FingerprintDaemonProxy> proxy = in main() local 42 android::FingerprintDaemonProxy::descriptor, proxy); in main()
|
/system/webservd/webservd/ |
D | firewalld_firewall.cc | 41 org::chromium::FirewalldProxyInterface* proxy) { in OnFirewalldOnline() argument 42 proxy_ = proxy; in OnFirewalldOnline()
|
D | permission_broker_firewall.cc | 61 org::chromium::PermissionBrokerProxyInterface* proxy) { in OnPermissionBrokerOnline() argument 62 proxy_ = proxy; in OnPermissionBrokerOnline()
|
D | firewalld_firewall.h | 43 void OnFirewalldOnline(org::chromium::FirewalldProxyInterface* proxy);
|
D | permission_broker_firewall.h | 44 org::chromium::PermissionBrokerProxyInterface* proxy);
|
/system/connectivity/shill/shims/ |
D | openvpn_script.cc | 54 shill::shims::TaskProxy proxy(bus, path, service); in main() local 56 proxy.Notify(reason, env); in main()
|
/system/update_engine/ |
D | libcurl_http_fetcher.cc | 64 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()
|
D | update_engine-client.gyp | 30 'mock_output_file': 'include/update_engine/dbus-proxy-mocks.h',
|
/system/core/libmemunreachable/ |
D | PtracerThread.cpp | 96 auto proxy = [](void *arg) -> int { in Start() local 101 child_pid_ = clone(proxy, stack_->top(), in Start()
|
/system/connectivity/shill/ |
D | shill-client.gyp | 14 'mock_output_file': 'include/shill/dbus-proxy-mocks.h', 34 'xml2cpp_type': 'proxy',
|
/system/update_engine/include/ |
D | update_includes.sh | 49 ${DBUS_GENERATOR} "${xmls[@]}" --mock="${mockh}" --proxy="${proxyh}"
|
/system/weaved/libweaved/ |
D | command.cc | 55 Command::Command(const android::sp<android::weave::IWeaveCommand>& proxy) in Command() argument 56 : binder_proxy_{proxy} {} in Command()
|
D | command.h | 140 explicit Command(const android::sp<android::weave::IWeaveCommand>& proxy);
|