Searched defs:proxy (Results 1 - 8 of 8) sorted by relevance

/system/core/libmemunreachable/
H A DPtracerThread.cpp96 auto proxy = [](void* arg) -> int { local
102 child_pid_ = clone(proxy, stack_->top(), CLONE_VM | CLONE_FS | CLONE_FILES /*|CLONE_UNTRACED*/,
/system/media/alsa_utils/
H A Dalsa_device_proxy.c44 int proxy_prepare(alsa_device_proxy * proxy, const alsa_device_profile* profile, argument
51 proxy->profile = profile;
58 proxy->alsa_config.format = config->format;
60 proxy->alsa_config.format = profile->default_config.format;
70 proxy->alsa_config.rate = config->rate;
72 proxy->alsa_config.rate = profile->default_config.rate;
82 proxy->alsa_config.channels = config->channels;
84 proxy->alsa_config.channels = profile_get_closest_channel_count(profile, config->channels);
86 config->channels, proxy->alsa_config.channels);
93 proxy
127 proxy_open(alsa_device_proxy * proxy) argument
156 proxy_close(alsa_device_proxy * proxy) argument
169 proxy_get_sample_rate(const alsa_device_proxy * proxy) argument
177 proxy_get_format(const alsa_device_proxy * proxy) argument
185 proxy_get_channel_count(const alsa_device_proxy * proxy) argument
193 proxy_get_period_size(const alsa_device_proxy * proxy) argument
198 proxy_get_period_count(const alsa_device_proxy * proxy) argument
203 proxy_get_latency(const alsa_device_proxy * proxy) argument
209 proxy_get_presentation_position(const alsa_device_proxy * proxy, uint64_t *frames, struct timespec *timestamp) argument
237 proxy_write(alsa_device_proxy * proxy, const void *data, unsigned int count) argument
246 proxy_read(const alsa_device_proxy * proxy, void *data, unsigned int count) argument
254 proxy_dump(const alsa_device_proxy* proxy, int fd) argument
265 proxy_scan_rates(alsa_device_proxy * proxy, const unsigned sample_rates[]) argument
[all...]
/system/core/gatekeeperd/
H A Dgatekeeperd.cpp410 android::sp<android::GateKeeperProxy> proxy = new android::GateKeeperProxy(); local
412 android::String16("android.service.gatekeeper.IGateKeeperService"), proxy);
/system/update_engine/
H A Dlibcurl_http_fetcher.cc116 bool LibcurlHttpFetcher::GetProxyType(const string& proxy, argument
119 proxy, "socks5://", base::CompareCase::INSENSITIVE_ASCII) ||
121 proxy, "socks://", base::CompareCase::INSENSITIVE_ASCII)) {
126 proxy, "socks4://", base::CompareCase::INSENSITIVE_ASCII)) {
131 proxy, "http://", base::CompareCase::INSENSITIVE_ASCII) ||
133 proxy, "https://", base::CompareCase::INSENSITIVE_ASCII)) {
137 if (base::StartsWith(proxy, kNoProxy, base::CompareCase::INSENSITIVE_ASCII)) {
141 LOG(INFO) << "Unknown proxy type: " << proxy;
165 LOG(INFO) << "Using proxy
[all...]
/system/tools/aidl/
H A Dgenerate_java_binder.cpp194 m->comment += " * generating a proxy if needed.\n */";
553 std::unique_ptr<Method> proxy(new Method);
554 proxy->comment = method.GetComments();
555 proxy->modifiers = PUBLIC | OVERRIDE;
556 proxy->returnType = method.GetType().GetLanguageType<Type>();
557 proxy->returnTypeDimension = method.GetType().IsArray() ? 1 : 0;
558 proxy->name = method.GetName();
559 proxy->statements = new StatementBlock;
561 proxy->parameters.push_back(
565 proxy
714 Method* proxy = generate_proxy_method(iface, local
723 generate_interface_descriptors(StubClass* stub, ProxyClass* proxy, const JavaTypeNamespace* types) argument
807 ProxyClass* proxy = local
[all...]
H A Dtype_java.cpp685 int declLine, const Type* stub, const Type* proxy)
691 proxy_(proxy) {}
872 // for interfaces, add the stub, proxy, and interface types.
876 Type* proxy = new Type(this, b.GetPackage(), local
882 b.IsOneway(), filename, b.GetLine(), stub, proxy);
887 success &= Add(proxy);
682 InterfaceType(const JavaTypeNamespace* types, const string& package, const string& name, bool builtIn, bool oneway, const string& declFile, int declLine, const Type* stub, const Type* proxy) argument
/system/libhwbinder/
H A DIPCThreadState.cpp663 void IPCThreadState::incStrongHandle(int32_t handle, BpHwBinder *proxy) argument
669 proxy->incStrong(mProcess.get());
670 mPostWriteStrongDerefs.push(proxy);
680 void IPCThreadState::incWeakHandle(int32_t handle, BpHwBinder *proxy) argument
686 proxy->getWeakRefs()->incWeak(mProcess.get());
687 mPostWriteWeakDerefs.push(proxy->getWeakRefs());
729 status_t IPCThreadState::requestDeathNotification(int32_t handle, BpHwBinder* proxy) argument
733 mOut.writePointer((uintptr_t)proxy);
737 status_t IPCThreadState::clearDeathNotification(int32_t handle, BpHwBinder* proxy) argument
741 mOut.writePointer((uintptr_t)proxy);
1204 BpHwBinder *proxy = (BpHwBinder*)mIn.readPointer(); local
1212 BpHwBinder *proxy = (BpHwBinder*)mIn.readPointer(); local
[all...]
H A DParcel.cpp204 BpHwBinder *proxy = binder->remoteBinder(); local
205 if (proxy == NULL) {
206 ALOGE("null proxy");
208 const int32_t handle = proxy ? proxy->handle() : 0;
246 BpHwBinder *proxy = real->remoteBinder(); local
247 if (proxy == NULL) {
248 ALOGE("null proxy");
250 const int32_t handle = proxy ? proxy
[all...]

Completed in 3218 milliseconds