| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/gdb/python/gdb/ |
| H A D | unwinder.py | 53 def register_unwinder(locus, unwinder, replace=False): argument 74 if locus is None: 77 locus = gdb 78 elif isinstance(locus, gdb.Objfile) or isinstance(locus, gdb.Progspace): 81 (unwinder.name, locus.filename)) 86 for needle in locus.frame_unwinders: 89 del locus.frame_unwinders[i] 94 locus.frame_unwinders.insert(0, unwinder)
|
| H A D | xmethod.py | 235 def _lookup_xmethod_matcher(locus, name): argument 236 for i in range(0, len(locus.xmethods)): 237 if locus.xmethods[i].name == name: 242 def register_xmethod_matcher(locus, matcher, replace=False): argument 260 if not locus: 261 locus = gdb 262 if locus == gdb: 265 locus_name = locus.filename 266 index = _lookup_xmethod_matcher(locus, matcher.name) 269 del locus.xmethods[index] [all …]
|
| H A D | types.py | 170 def register_type_printer(locus, printer): argument 176 if locus is None: 177 locus = gdb 178 locus.type_printers.insert(0, printer)
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/gdb/python/gdb/ |
| H A D | unwinder.py | 53 def register_unwinder(locus, unwinder, replace=False): argument 74 if locus is None: 77 locus = gdb 78 elif isinstance(locus, gdb.Objfile) or isinstance(locus, gdb.Progspace): 81 (unwinder.name, locus.filename)) 86 for needle in locus.frame_unwinders: 89 del locus.frame_unwinders[i] 94 locus.frame_unwinders.insert(0, unwinder)
|
| H A D | xmethod.py | 235 def _lookup_xmethod_matcher(locus, name): argument 236 for i in range(0, len(locus.xmethods)): 237 if locus.xmethods[i].name == name: 242 def register_xmethod_matcher(locus, matcher, replace=False): argument 260 if not locus: 261 locus = gdb 262 if locus == gdb: 265 locus_name = locus.filename 266 index = _lookup_xmethod_matcher(locus, matcher.name) 269 del locus.xmethods[index] [all …]
|
| H A D | types.py | 170 def register_type_printer(locus, printer): argument 176 if locus is None: 177 locus = gdb 178 locus.type_printers.insert(0, printer)
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/net/forwarding/ |
| H A D | pedit_dsfield.sh | 169 local locus=$1; shift 173 do_test_pedit_dsfield "$locus" \ 188 local locus=$1; shift 192 do_test_pedit_dsfield "$locus" \ 207 local locus=$1; shift 211 do_test_pedit_dsfield "$locus" \ 226 local locus=$1; shift 228 tc filter add $locus handle 101 pref 1 \ 234 do_test_pedit_dsfield_common "$locus" "set DSCP + set ECN" \ 238 tc filter del $locus pref 1 [all …]
|
| H A D | skbedit_priority.sh | 115 local locus=$1; shift 121 tc filter add $locus handle 101 pref 1 \ 125 local pkt2=$(tc_rule_handle_stats_get "$locus" 101) 134 local pkt3=$(tc_rule_handle_stats_get "$locus" 101) 138 log_test "$locus skbedit priority $prio -> classid $classid" 140 tc filter del $locus pref 1
|
| H A D | pedit_l4port.sh | 155 local locus=$1; shift 162 do_test_pedit_l4port_one "$locus" "$prot" \
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/gdb/python/gdb/command/ |
| H A D | xmethods.py | 103 for locus in loci: 104 if isinstance(locus, gdb.Progspace): 109 if not locus_re.match(locus.filename): 112 locus_str = "%s %s" % (locus_type, locus.filename) 114 m for m in locus.xmethods if matcher_re.match(m.name)]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/gdb/python/gdb/command/ |
| H A D | xmethods.py | 103 for locus in loci: 104 if isinstance(locus, gdb.Progspace): 109 if not locus_re.match(locus.filename): 112 locus_str = "%s %s" % (locus_type, locus.filename) 114 m for m in locus.xmethods if matcher_re.match(m.name)]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/gcc-10.3.1/python/libstdcxx/v6/ |
| H A D | xmethods.py | 782 def register_libstdcxx_xmethods(locus): argument 783 gdb.xmethod.register_xmethod_matcher(locus, ArrayMethodsMatcher()) 784 gdb.xmethod.register_xmethod_matcher(locus, ForwardListMethodsMatcher()) 785 gdb.xmethod.register_xmethod_matcher(locus, DequeMethodsMatcher()) 786 gdb.xmethod.register_xmethod_matcher(locus, ListMethodsMatcher()) 787 gdb.xmethod.register_xmethod_matcher(locus, VectorMethodsMatcher()) 789 locus, AssociativeContainerMethodsMatcher('set')) 791 locus, AssociativeContainerMethodsMatcher('map')) 793 locus, AssociativeContainerMethodsMatcher('multiset')) 795 locus, AssociativeContainerMethodsMatcher('multimap')) [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/gcc-10.3.1/python/libstdcxx/v6/ |
| H A D | xmethods.py | 782 def register_libstdcxx_xmethods(locus): argument 783 gdb.xmethod.register_xmethod_matcher(locus, ArrayMethodsMatcher()) 784 gdb.xmethod.register_xmethod_matcher(locus, ForwardListMethodsMatcher()) 785 gdb.xmethod.register_xmethod_matcher(locus, DequeMethodsMatcher()) 786 gdb.xmethod.register_xmethod_matcher(locus, ListMethodsMatcher()) 787 gdb.xmethod.register_xmethod_matcher(locus, VectorMethodsMatcher()) 789 locus, AssociativeContainerMethodsMatcher('set')) 791 locus, AssociativeContainerMethodsMatcher('map')) 793 locus, AssociativeContainerMethodsMatcher('multiset')) 795 locus, AssociativeContainerMethodsMatcher('multimap')) [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/ |
| H A D | tree-ssa.h | 27 location_t locus; /* PHI arg location. */ member 80 return v->locus; in redirect_edge_var_map_location()
|
| H A D | tree-core.h | 1492 location_t locus; member 1539 location_t locus; member 1544 location_t locus; member 1579 location_t locus; member 1681 location_t locus; member
|
| H A D | tree.h | 1175 (CAN_HAVE_LOCATION_P ((NODE)) ? (NODE)->exp.locus : UNKNOWN_LOCATION) 1176 #define SET_EXPR_LOCATION(NODE, LOCUS) EXPR_CHECK ((NODE))->exp.locus = (LOCUS) 1182 ? (NODE)->exp.locus : (LOCUS)) 1183 #define EXPR_FILENAME(NODE) LOCATION_FILE (EXPR_CHECK ((NODE))->exp.locus) 1184 #define EXPR_LINENO(NODE) LOCATION_LINE (EXPR_CHECK (NODE)->exp.locus) 1464 (LOCATION_LOCUS ((OMP_CLAUSE_CHECK (NODE))->omp_clause.locus) \ 1466 #define OMP_CLAUSE_LOCATION(NODE) (OMP_CLAUSE_CHECK (NODE))->omp_clause.locus 1952 #define BLOCK_SOURCE_LOCATION(NODE) (BLOCK_CHECK (NODE)->block.locus) 2437 (DECL_MINIMAL_CHECK (NODE)->decl_minimal.locus)
|
| H A D | line-map.h | 744 location_t locus; member
|
| H A D | gimple.h | 4578 return gimple_phi_arg (phi, i)->locus; 4586 return gimple_phi_arg (phi, e->dest_idx)->locus; 4594 gimple_phi_arg (phi, i)->locus = loc; 4602 return &gimple_phi_arg (phi, i)->locus;
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/ |
| H A D | tree-ssa.h | 27 location_t locus; /* PHI arg location. */ member 80 return v->locus; in redirect_edge_var_map_location()
|
| H A D | tree-core.h | 1492 location_t locus; member 1539 location_t locus; member 1544 location_t locus; member 1579 location_t locus; member 1681 location_t locus; member
|
| H A D | tree.h | 1175 (CAN_HAVE_LOCATION_P ((NODE)) ? (NODE)->exp.locus : UNKNOWN_LOCATION) 1176 #define SET_EXPR_LOCATION(NODE, LOCUS) EXPR_CHECK ((NODE))->exp.locus = (LOCUS) 1182 ? (NODE)->exp.locus : (LOCUS)) 1183 #define EXPR_FILENAME(NODE) LOCATION_FILE (EXPR_CHECK ((NODE))->exp.locus) 1184 #define EXPR_LINENO(NODE) LOCATION_LINE (EXPR_CHECK (NODE)->exp.locus) 1464 (LOCATION_LOCUS ((OMP_CLAUSE_CHECK (NODE))->omp_clause.locus) \ 1466 #define OMP_CLAUSE_LOCATION(NODE) (OMP_CLAUSE_CHECK (NODE))->omp_clause.locus 1952 #define BLOCK_SOURCE_LOCATION(NODE) (BLOCK_CHECK (NODE)->block.locus) 2437 (DECL_MINIMAL_CHECK (NODE)->decl_minimal.locus)
|
| H A D | line-map.h | 744 location_t locus; member
|
| H A D | gimple.h | 4578 return gimple_phi_arg (phi, i)->locus; 4586 return gimple_phi_arg (phi, e->dest_idx)->locus; 4594 gimple_phi_arg (phi, i)->locus = loc; 4602 return &gimple_phi_arg (phi, i)->locus;
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/gcc/gcc/ |
| H A D | 0001-CVE-2021-42574.patch | 68 * diagnostic-show-locus.c 220 gcc/diagnostic-show-locus.c | 580 +++++++++++++++--- 382 diff --git a/gcc/diagnostic-show-locus.c b/gcc/diagnostic-show-locus.c 383 --- a/gcc/diagnostic-show-locus.c 2021-07-27 23:55:07.232286576 -0700 384 +++ b/gcc/diagnostic-show-locus.c 2021-12-14 01:16:01.545943202 -0800 2055 + ASCII chars when printing the user's source code in diagnostic-show-locus.c
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/cp/ |
| H A D | cp-tree.h | 1344 (((struct tree_trait_expr *)TRAIT_EXPR_CHECK (NODE))->locus) 1350 location_t locus; member 1420 (((struct tree_lambda_expr *)LAMBDA_EXPR_CHECK (NODE))->locus) 1448 location_t locus; member 1470 location_t locus; member 6206 location_t locus; member
|