• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2022 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 const char *dso_symbol_invalid = "dso_symbol_invalid";
17 const char *dso_version_invalid = "dso_version_invalid";
18 
19 const char *dso_no_symver_name = "libdso_no_symver.so";
20 const char *dso_no_symver_symbol = "dso_no_symver";
21 
22 const char *dso_easy_symver_name = "libdso_easy_symver.so";
23 const char *dso_easy_symver_symbol = "dso_easy_symver";
24 const char *dso_easy_symver_symbol_old = "dso_easy_symver_old";
25 const char *dso_easy_symver_symbol_stable = "dso_easy_symver_stable";
26 const char *dso_easy_symver_symbol_dev = "dso_easy_symver_dev";
27 const char *dso_easy_symver_version_old = "OLD";
28 const char *dso_easy_symver_version_stable = "STABLE";
29 const char *dso_easy_symver_version_dev = "DEV";
30 
31 const char *dso_hard_symver_name = "libdso_hard_symver.so";
32 const char *dso_hard_symver_if_symbol = "dso_hard_symver_if";
33 const char *dso_hard_symver_if_symbol_old = "dso_hard_symver_if_old";
34 const char *dso_hard_symver_if_symbol_stable = "dso_hard_symver_if_stable";
35 const char *dso_hard_symver_if_symbol_dev = "dso_hard_symver_if_dev";
36 const char *dso_hard_symver_ld_symbol = "dso_hard_symver_ld";
37 const char *dso_hard_symver_ld_symbol_old = "dso_hard_symver_ld_old";
38 const char *dso_hard_symver_ld_symbol_stable = "dso_hard_symver_ld_stable";
39 const char *dso_hard_symver_ld_symbol_dev = "dso_hard_symver_ld_dev";
40 const char *dso_hard_symver_version_old = "OLD";
41 const char *dso_hard_symver_version_stable = "STABLE";
42 const char *dso_hard_symver_version_dev = "DEV";
43