HomeSort by relevance Sort by last modified time
    Searched defs:method_ (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/webp/src/enc/
config_enc.c 137 uint8_t method_; member in struct:__anon38545
147 config->method = kLosslessPresets[level].method_;
  /art/runtime/openjdkjvmti/
ti_breakpoint.h 59 return method_ == other.method_ && location_ == other.location_;
63 return method_;
71 art::ArtMethod* method_; member in class:openjdkjvmti::Breakpoint
  /external/libbrillo/brillo/http/
http_connection_curl.h 69 std::string method_; member in class:brillo::http::curl::Connection
http_transport_fake.h 165 const std::string& GetMethod() const { return method_; }
176 std::string method_; member in class:brillo::http::fake::ServerRequest
http_request.h 308 const std::string method_; member in class:brillo::http::final
  /external/webp/src/dec/
alphai_dec.h 30 int method_; member in struct:ALPHDecoder
  /external/webrtc/webrtc/common_video/libyuv/include/
scaler.h 58 ScaleMethod method_; member in class:webrtc::Scaler
  /system/tpm/attestation/common/
mock_tpm_utility.cc 28 explicit TransformString(std::string method) : method_(method) {}
30 *out = attestation::MockTpmUtility::Transform(method_, in);
35 std::string method_; member in class:__anon115200::TransformString
40 explicit UntransformString(std::string method) : method_(method) {}
42 std::string suffix = "_fake_transform_" + method_;
52 std::string method_; member in class:__anon115200::UntransformString
  /system/tpm/tpm_manager/client/
binder_proxy_helper.h 35 : method_(method),
56 android::binder::Status status = method_.Run(request_bytes, observer);
90 BinderMethodType method_; member in class:tpm_manager::BinderProxyHelper
  /art/runtime/jit/
profiling_info.h 73 return method_;
141 ArtMethod* method_; member in class:art::ProfilingInfo
jit.cc 598 JitCompileTask(ArtMethod* method, TaskKind kind) : method_(method), kind_(kind) {
601 klass_ = soa.Vm()->AddGlobalRef(soa.Self(), method_->GetDeclaringClass());
613 Runtime::Current()->GetJit()->CompileMethod(method_, self, /* osr */ false);
615 Runtime::Current()->GetJit()->CompileMethod(method_, self, /* osr */ true);
618 if (ProfilingInfo::Create(self, method_, /* retry_allocation */ true)) {
619 VLOG(jit) << "Start profiling " << ArtMethod::PrettyMethod(method_);
630 ArtMethod* const method_; member in class:art::jit::FINAL
  /external/webrtc/webrtc/examples/peerconnection/server/
data_socket.h 65 method_(INVALID),
74 bool headers_received() const { return method_ != INVALID; }
76 RequestMethod method() const { return method_; }
88 return headers_received() && (method_ != POST || data_received());
92 return method_ != POST || data_.length() >= content_length_;
135 RequestMethod method_; member in class:DataSocket
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
remote_method.h 93 method_(method),
97 // Invokes method_ on intance_ with the packed arguments from parameters_.
105 MethodType method_; member in class:android::pdx::rpc::UnpackArguments
111 return static_cast<Return>((instance_.*method_)(
  /art/runtime/gc/
allocation_record.h 46 : method_(method),
50 return method_;
54 method_ = m;
66 return method_ == other.method_ && dex_pc_ == other.dex_pc_;
70 ArtMethod* method_ = nullptr; member in class:art::gc::AllocRecordStackTraceElement
  /art/runtime/
gc_root.h 156 : field_(nullptr), method_(nullptr) {
159 : field_(field), method_(nullptr) {
162 : field_(nullptr), method_(method) {
168 return method_;
174 return method_ != nullptr;
179 ArtMethod* const method_; member in class:art::GcRootSource
instrumentation.h 663 : this_object_(this_object), method_(method), return_pc_(return_pc), frame_id_(frame_id),
670 ArtMethod* method_; member in struct:art::instrumentation::InstrumentationStackFrame
debugger.h 98 stack_depth_(stack_depth), method_(method) {
114 return method_;
139 ArtMethod* method_; member in class:art::SingleStepControl
159 DeoptimizationRequest() : kind_(kNothing), instrumentation_event_(0), method_(nullptr) {}
200 jmethodID method_; member in class:art::DeoptimizationRequest
    [all...]
dex_file_annotations.cc 74 if (method_ != nullptr) {
75 return method_->GetDexCache();
82 if (method_ != nullptr) {
83 return method_->GetDeclaringClass()->GetClassLoader();
90 if (method_ != nullptr) {
91 return method_->GetDeclaringClass();
103 method_(method),
106 DCHECK((method_ == nullptr) || real_klass_.IsNull());
110 ArtMethod* method_; member in class:art::__anon47::ClassData
    [all...]
  /external/flatbuffers/src/
idl_gen_grpc.cpp 34 : method_(method) {
36 auto val = method_->attributes.Lookup("streaming");
44 std::string name() const { return method_->name; }
51 return GRPCType(*method_->request);
54 return GRPCType(*method_->response);
58 return (*method_->request).name;
62 return (*method_->response).name;
71 const RPCCall *method_; member in class:flatbuffers::FlatBufMethod
  /external/webrtc/webrtc/base/
bind.h 138 : method_(method), object_(object) {}
140 return (object_->*method_)(); }
142 MethodT method_; member in class:rtc::MethodFunctor0
205 : method_(method), object_(object),
208 return (object_->*method_)(p1_); }
210 MethodT method_; member in class:rtc::MethodFunctor1
287 : method_(method), object_(object),
291 return (object_->*method_)(p1_, p2_); }
293 MethodT method_; member in class:rtc::MethodFunctor2
384 : method_(method), object_(object)
391 MethodT method_; member in class:rtc::MethodFunctor3
504 MethodT method_; member in class:rtc::MethodFunctor4
632 MethodT method_; member in class:rtc::MethodFunctor5
775 MethodT method_; member in class:rtc::MethodFunctor6
939 MethodT method_; member in class:rtc::MethodFunctor7
1131 MethodT method_; member in class:rtc::MethodFunctor8
1342 MethodT method_; member in class:rtc::MethodFunctor9
    [all...]
  /frameworks/base/tools/aapt2/compile/
PseudolocaleGenerator.cpp 225 : pool_(pool), method_(method), localizer_(method) {}
230 Visitor sub_visitor(pool_, method_);
277 item = PseudolocalizeStyledString(string, method_, pool_);
286 Pseudolocalizer::Method method_; member in class:aapt::__anon40925::Visitor
  /art/runtime/interpreter/
shadow_frame.h 271 DCHECK(method_ != nullptr);
272 method_ = method;
276 DCHECK(method_ != nullptr);
277 return method_;
308 return OFFSETOF_MEMBER(ShadowFrame, method_);
368 method_(method),
398 ArtMethod* method_; member in class:art::ShadowFrame
  /external/protobuf/src/google/protobuf/stubs/
callback.h 144 : object_(object), method_(method), self_deleting_(self_deleting) {}
149 (object_->*method_)();
155 MethodType method_; member in class:google::protobuf::internal::MethodClosure0
189 : object_(object), method_(method), self_deleting_(self_deleting),
195 (object_->*method_)(arg1_);
201 MethodType method_; member in class:google::protobuf::internal::MethodClosure1
237 : object_(object), method_(method), self_deleting_(self_deleting),
243 (object_->*method_)(arg1_, arg2_);
249 MethodType method_; member in class:google::protobuf::internal::MethodClosure2
357 method_(method)
375 MethodType method_; member in class:google::protobuf::internal::MethodResultCallback_5_2
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
callback.h 144 : object_(object), method_(method), self_deleting_(self_deleting) {}
149 (object_->*method_)();
155 MethodType method_; member in class:google::protobuf::internal::MethodClosure0
189 : object_(object), method_(method), self_deleting_(self_deleting),
195 (object_->*method_)(arg1_);
201 MethodType method_; member in class:google::protobuf::internal::MethodClosure1
237 : object_(object), method_(method), self_deleting_(self_deleting),
243 (object_->*method_)(arg1_, arg2_);
249 MethodType method_; member in class:google::protobuf::internal::MethodClosure2
357 method_(method)
375 MethodType method_; member in class:google::protobuf::internal::MethodResultCallback_5_2
    [all...]
  /art/test/ti-stress/
stress.cc 200 method_(m),
216 if (jvmtienv_->GetMethodDeclaringClass(method_, &declaring_class_) != JVMTI_ERROR_NONE) {
222 jvmtiError err = jvmtienv_->GetLineNumberTable(method_, &nlines, &lines);
233 (jvmtienv_->GetMethodName(method_, &name_, &signature_, &generic_) == JVMTI_ERROR_NONE);
263 jmethodID method_; member in class:art::ScopedMethodInfo

Completed in 2867 milliseconds

1 2 3