Home
last modified time | relevance | path

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

/third_party/weston/protocol/
Dmeson.build43 proto_name = proto[0] variable
45 base_file = proto_name
46 xml_path = '@0@.xml'.format(proto_name)
48 base_file = proto_name
51 base_file = '@0@-unstable-@1@'.format(proto_name, proto[1])
52 xml_path = '@0@/unstable/@1@/@2@.xml'.format(dir_wp_base, proto_name, base_file)
/third_party/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.py1068 proto_name = binascii.hexlify(os.urandom(16)).decode('ascii')
1072 proto_name + '.proto')
1075 file_descriptor_proto.name = proto_name + '.proto'
/third_party/curl/src/
Dtool_libinfo.c50 const char *proto_name; in get_libcurl_info() member
94 for(p = possibly_built_in; p->proto_name; p++) { in get_libcurl_info()
95 if(curl_strequal(*proto, p->proto_name)) { in get_libcurl_info()
/third_party/protobuf/php/src/Google/Protobuf/Internal/
DFieldDescriptor.php256 $proto_name = $proto->getName();
257 $json_name = implode('', array_map('ucwords', explode('_', $proto_name)));
258 if ($proto_name[0] !== "_" && !ctype_upper($proto_name[0])) {
/third_party/libsnd/
Dmake_lite.py21 def find_function_prototype (source, proto_name): argument
22 proto_re = "(^[a-zA-Z_ \t]+\s+%s[^a-zA-Z0-9_]\s*\([^\)]+\)\s+;\n)" % (proto_name)
79 def remove_prototype (source, proto_name): argument
80 proto_text = find_function_prototype (source, proto_name)
82 print "remove_prototype : prototype '%s' not found. Exiting." % proto_name
/third_party/protobuf/src/google/protobuf/compiler/
Dcommand_line_interface_unittest.cc175 const std::string& proto_name,
179 const std::string& proto_name,
184 const std::string& proto_name,
189 const std::string& proto_name,
441 const std::string& proto_name, const std::string& message_name) { in ExpectGenerated() argument
442 MockCodeGenerator::ExpectGenerated(generator_name, parameter, "", proto_name, in ExpectGenerated()
443 message_name, proto_name, temp_directory_); in ExpectGenerated()
448 const std::string& proto_name, const std::string& message_name, in ExpectGenerated() argument
450 MockCodeGenerator::ExpectGenerated(generator_name, parameter, "", proto_name, in ExpectGenerated()
451 message_name, proto_name, in ExpectGenerated()
[all …]
/third_party/ffmpeg/libavformat/
Dhls.c629 const char *proto_name = NULL; in open_url() local
635 proto_name = avio_find_protocol_name(url + 7); in open_url()
638 proto_name = avio_find_protocol_name(url + 5); in open_url()
641 if (!proto_name) in open_url()
642 proto_name = avio_find_protocol_name(url); in open_url()
644 if (!proto_name) in open_url()
648 if (av_strstart(proto_name, "file", NULL)) { in open_url()
656 } else if (av_strstart(proto_name, "http", NULL)) { in open_url()
658 } else if (av_strstart(proto_name, "data", NULL)) { in open_url()
663 if (!strncmp(proto_name, url, strlen(proto_name)) && url[strlen(proto_name)] == ':') in open_url()
[all …]
Ddashdec.c164 const char *proto_name = avio_find_protocol_name(url); in ishttp() local
165 return proto_name && av_strstart(proto_name, "http", NULL); in ishttp()
406 const char *proto_name = NULL; in open_url() local
411 proto_name = avio_find_protocol_name(url + 7); in open_url()
414 if (!proto_name) in open_url()
415 proto_name = avio_find_protocol_name(url); in open_url()
417 if (!proto_name) in open_url()
421 if (av_strstart(proto_name, "file", NULL)) { in open_url()
429 } else if (av_strstart(proto_name, "http", NULL)) { in open_url()
434 if (!strncmp(proto_name, url, strlen(proto_name)) && url[strlen(proto_name)] == ':') in open_url()
[all …]
/third_party/lwip/src/include/netif/ppp/
Dfsm.h127 const char *proto_name; /* String name for protocol (for messages) */ member
/third_party/cef/patch/patches/
Dchrome_browser_privacy_1119417.patch59 proto_name = get_path_info(proto, "name")
/third_party/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()
/third_party/lwip/src/netif/ppp/
Dfsm.c71 #define PROTO_NAME(f) ((f)->callbacks->proto_name)
/third_party/ffmpeg/fftools/
Dffmpeg_opt.c994 const char *proto_name = avio_find_protocol_name(filename); in assert_file_overwrite() local
1002 if (proto_name && !strcmp(proto_name, "file") && avio_check(filename, 0) == 0) { in assert_file_overwrite()
1021 if (proto_name && !strcmp(proto_name, "file")) { in assert_file_overwrite()
/third_party/protobuf/src/google/protobuf/
Ddescriptor.cc3310 const std::string& proto_name);
4591 const std::string& scope, const std::string& proto_name) { in AllocateNameString() argument
4594 full_name = tables_->AllocateString(proto_name); in AllocateNameString()
4597 *full_name = StrCat(scope, ".", proto_name); in AllocateNameString()