Home
last modified time | relevance | path

Searched refs:method_type (Results 1 – 7 of 7) sorted by relevance

/external/wpa_supplicant_8/src/eap_common/
Deap_gpsk_common.c346 size_t seed_len, u8 method_type) in eap_gpsk_derive_mid_helper() argument
379 os_memcpy(pos, &method_type, 1); in eap_gpsk_derive_mid_helper()
422 u8 method_type, u8 *sid, size_t *sid_len) in eap_gpsk_derive_session_id() argument
464 method_type); in eap_gpsk_derive_session_id()
466 sid[0] = method_type; in eap_gpsk_derive_session_id()
Deap_gpsk_common.h61 u8 method_type, u8 *sid, size_t *sid_len);
/external/grpc-grpc/src/compiler/
Dcsharp_generator.cc187 std::string GetCSharpMethodType(MethodType method_type) { in GetCSharpMethodType() argument
188 switch (method_type) { in GetCSharpMethodType()
447 MethodType method_type = GetMethodType(method); in GenerateClientStub() local
449 if (method_type == METHODTYPE_NO_STREAMING) { in GenerateClientStub()
491 if (method_type == METHODTYPE_NO_STREAMING) { in GenerateClientStub()
/external/boringssl/src/crypto/bio/
Dbio.c380 int method_type, mask; in BIO_find_type() local
389 method_type = bio->method->type; in BIO_find_type()
392 if (method_type & type) { in BIO_find_type()
395 } else if (method_type == type) { in BIO_find_type()
/external/grpc-grpc/include/grpcpp/impl/codegen/
Drpc_method.h48 RpcType method_type() const { return method_type_; } in method_type() function
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
DInstConstraintVisitor.java412 Type method_type = mg.getType(); in visitReturnInstruction() local
413 if (method_type == Type.BOOLEAN || in visitReturnInstruction()
414 method_type == Type.BYTE || in visitReturnInstruction()
415 method_type == Type.SHORT || in visitReturnInstruction()
416 method_type == Type.CHAR) { in visitReturnInstruction()
417 method_type = Type.INT; in visitReturnInstruction()
421 if (method_type != Type.VOID) { in visitReturnInstruction()
429 if (method_type == Type.VOID) { in visitReturnInstruction()
448 if (! ( method_type.equals( stack().peek() ))) { in visitReturnInstruction()
449 …traintViolated(o, "Current method has return type of '"+mg.getType()+"' expecting a '"+method_type+ in visitReturnInstruction()
/external/grpc-grpc/src/cpp/server/
Dserver_cc.cc148 method->method_type() == internal::RpcMethod::NORMAL_RPC || in SyncRequest()
149 method->method_type() == internal::RpcMethod::SERVER_STREAMING), in SyncRequest()
481 switch (method->method_type()) { in PayloadHandlingForMethod()