Home
last modified time | relevance | path

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

/external/protobuf/python/google/protobuf/
Ddescriptor_database.py61 proto_name = file_desc_proto.name
62 if proto_name not in self._file_desc_protos_by_file:
63 self._file_desc_protos_by_file[proto_name] = file_desc_proto
64 elif self._file_desc_protos_by_file[proto_name] != file_desc_proto:
66 '%s already added, but with different descriptor.' % proto_name)
Ddescriptor.py906 proto_name = str(uuid.uuid4())
910 proto_name + '.proto')
913 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/protobuf/src/google/protobuf/compiler/
Dcommand_line_interface_unittest.cc172 const string& proto_name,
176 const string& proto_name,
181 const string& proto_name,
186 const string& proto_name,
425 const string& proto_name, in Run() argument
428 generator_name, parameter, "", proto_name, message_name, proto_name, in Run()
435 const string& proto_name, in Run() argument
439 generator_name, parameter, "", proto_name, message_name, proto_name, in Run()
446 const string& proto_name, in Run() argument
449 generator_name, "", "", proto_name, message_name, in Run()
[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/
Dprotoc_helper.py53 proto_name = args.proto_name
61 run(encode_or_decode, protoc_path, proto_name, root, input, output)
Dgen_binary_descriptors84 proto_name = source_name[:-len('.proto')].title().replace("_", "")
85 constant_name = 'k' + proto_name + 'Descriptor'
122 'proto_name': proto_name,
/external/perfetto/tools/ftrace_proto_gen/
Dmain.cc165 std::string proto_name = perfetto::EventNameToProtoName(event.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/webrtc/webrtc/p2p/base/
Drelayport.cc224 std::string proto_name = ProtoToString(addr.proto); in AddExternalAddress() local
228 LOG(INFO) << "Redundant relay address: " << proto_name in AddExternalAddress()
241 std::string proto_name = ProtoToString(iter->proto); in SetReady() local
245 AddAddress(iter->address, iter->address, rtc::SocketAddress(), proto_name, in SetReady()
246 proto_name, "", RELAY_PORT_TYPE, ICE_TYPE_PREFERENCE_RELAY, 0, in SetReady()
/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/perfetto/gn/standalone/
Dproto_library.gni81 proto_name = get_path_info(proto, "name")
82 proto_path = proto_dir + "/" + proto_name
/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()