Home
last modified time | relevance | path

Searched refs:proto_name (Results 1 – 22 of 22) sorted by relevance

/external/protobuf/python/google/protobuf/
Ddescriptor_database.py63 proto_name = file_desc_proto.name
64 if proto_name not in self._file_desc_protos_by_file:
65 self._file_desc_protos_by_file[proto_name] = file_desc_proto
66 elif self._file_desc_protos_by_file[proto_name] != file_desc_proto:
68 '%s already added, but with different descriptor.' % proto_name)
Ddescriptor.py1007 proto_name = binascii.hexlify(os.urandom(16)).decode('ascii')
1011 proto_name + '.proto')
1014 file_descriptor_proto.name = proto_name + '.proto'
/external/strace/
Dsocketutils.c146 const char *const proto_name = opaque_data; in inet_parse_response() local
188 if (asprintf(&details, "%s:[%s%s%s:%u->%s%s%s:%u]", proto_name, in inet_parse_response()
195 proto_name, ob, src_buf, cb, in inet_parse_response()
290 const char *proto_name = opaque_data; in unix_parse_response() local
357 if (asprintf(&details, "%s:[%lu%s%s]", proto_name, inode, in unix_parse_response()
388 const char *proto_name = opaque_data; in netlink_parse_response() local
406 if (asprintf(&details, "%s:[%s:%u]", proto_name, in netlink_parse_response()
410 if (asprintf(&details, "%s:[%u]", proto_name, in netlink_parse_response()
430 const unsigned long inode, const char *proto_name) in inet_get() argument
434 inet_parse_response, (void *) proto_name) in inet_get()
[all …]
DChangeLog329 and proto_name paramteres, use them where appropriate.
15615 * socketutils.c (receive_responses): Change the type of proto_name
15618 Rename proto_name to opaque_data, make it the last argument.
15621 Change the type of proto_name argument from "const char *" to "void *",
15623 Introduce a local variable proto_name to convert the type
32561 (print_sockaddr_by_inode): Make proto_name parameter const.
41631 * socketutils.c (inet_parse_response): Add proto_name argument.
41632 Print proto_name for connected and unconnected sockets.
41633 (receive_responses): Add proto_name argument, pass it to the parser.
41634 (inet_print): Add proto_name argument, pass it to receive_responses.
[all …]
/external/curl/src/
Dtool_libinfo.c50 const char *proto_name; in get_libcurl_info() member
91 for(p = possibly_built_in; p->proto_name; p++) { in get_libcurl_info()
92 if(curl_strequal(*proto, p->proto_name)) { in get_libcurl_info()
/external/perfetto/tools/
Dgen_cc_proto_descriptor.py30 proto_name = target_name[:-len('.descriptor.h')].title().replace("_", "")
78 proto_name=proto_name,
Dprotoc_helper.py47 '--%s=perfetto.protos.%s' % (args.encode_or_decode, args.proto_name),
/external/protobuf/php/src/Google/Protobuf/Internal/
DFieldDescriptor.php246 $proto_name = $proto->getName();
247 $json_name = implode('', array_map('ucwords', explode('_', $proto_name)));
248 if ($proto_name[0] !== "_" && !ctype_upper($proto_name[0])) {
/external/protobuf/src/google/protobuf/compiler/
Dcommand_line_interface_unittest.cc171 const std::string& proto_name,
175 const std::string& proto_name,
180 const std::string& proto_name,
185 const std::string& proto_name,
420 const std::string& proto_name, const std::string& message_name) { in ExpectGenerated() argument
421 MockCodeGenerator::ExpectGenerated(generator_name, parameter, "", proto_name, in ExpectGenerated()
422 message_name, proto_name, temp_directory_); in ExpectGenerated()
427 const std::string& proto_name, const std::string& message_name, in ExpectGenerated() argument
429 MockCodeGenerator::ExpectGenerated(generator_name, parameter, "", proto_name, in ExpectGenerated()
430 message_name, proto_name, in ExpectGenerated()
[all …]
/external/perfetto/tools/ftrace_proto_gen/
Dmain.cc164 std::string proto_name = in main() local
167 proto.name = proto_name; in main()
171 proto_name); in main()
175 PERFETTO_LOG("Did not find %s", proto_name.c_str()); in main()
/external/tensorflow/tensorflow/core/protobuf/
DBUILD42 name = "%s_pyclif" % proto_name,
44 proto_srcfile = "%s.proto" % proto_name,
48 for proto_name in [
/external/openscreen/third_party/protobuf/
Dproto_library.gni29 proto_name = get_path_info(proto, "name")
30 proto_path = proto_dir + "/" + proto_name
/external/rust/crates/grpcio-sys/grpc/tools/distrib/python/grpcio_tools/grpc_tools/
Dprotoc.py67 proto_name = components[-1][:-1 * len(suffix)]
70 return "/".join(components[:-1] + [proto_name + ".proto"])
/external/ppp/pppd/
Dfsm.h116 char *proto_name; /* String name for protocol (for messages) */ member
Dfsm.c69 #define PROTO_NAME(f) ((f)->callbacks->proto_name)
/external/rust/crates/grpcio-compiler/src/
Dprost_codegen.rs86 format!("/{}", service.proto_name) in generate_methods()
88 format!("/{}.{}", service.package, service.proto_name) in generate_methods()
135 &format!("\"{}/{}\"", service_path, method.proto_name), in generate_method_body()
/external/perfetto/gn/standalone/
Dproto_library.gni108 proto_name = get_path_info(proto, "name")
109 proto_path = proto_dir + "/" + proto_name
/external/rust/crates/grpcio-sys/grpc/src/compiler/
Dcpp_generator.cc121 std::string ImportInludeFromProtoName(const std::string& proto_name) { in ImportInludeFromProtoName() argument
123 proto_name.substr(0, proto_name.size() - 6) + in ImportInludeFromProtoName()
/external/tensorflow/tensorflow/core/
DBUILD1169 name = "example_%s_pyclif%s" % (proto_name, target_suffix),
1170 actual = "//tensorflow/core/example:%s_pyclif%s" % (proto_name, target_suffix),
1178 for proto_name in [
/external/protobuf/src/google/protobuf/
Ddescriptor.cc3294 const std::string& proto_name);
4525 const std::string& scope, const std::string& proto_name) { in AllocateNameString() argument
4528 full_name = tables_->AllocateString(proto_name); in AllocateNameString()
4531 *full_name = StrCat(scope, ".", proto_name); in AllocateNameString()
/external/pigweed/pw_rpc/
Ddocs.rst145 find out/ -name <proto_name>.rpc.pb.h
/external/iproute2/misc/
Dss.c774 static const char *proto_name(int protocol) in proto_name() function
818 sock_name = proto_name(s->type); in sock_state_print()