You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
// Protocol Buffers - Google's data interchange format
|
|
|
|
// Copyright 2023 Google LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file or at
|
|
|
|
// https://developers.google.com/open-source/licenses/bsd
|
|
|
|
|
|
|
|
#include "upb/message/compat.h"
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "upb/message/internal/extension.h"
|
|
|
|
#include "upb/message/message.h"
|
|
|
|
#include "upb/mini_table/extension.h"
|
|
|
|
|
|
|
|
// Must be last.
|
|
|
|
#include "upb/port/def.inc"
|
|
|
|
|
|
|
|
const upb_Extension* upb_Message_FindExtensionByNumber(const upb_Message* msg,
|
|
|
|
uint32_t field_number) {
|
|
|
|
size_t count = 0;
|
|
|
|
const upb_Extension* ext = _upb_Message_Getexts(msg, &count);
|
|
|
|
|
|
|
|
while (count--) {
|
|
|
|
if (upb_MiniTableExtension_Number(ext->ext) == field_number) return ext;
|
|
|
|
ext++;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|