| /OK3568_Linux_fs/kernel/drivers/interconnect/ |
| H A D | bulk.c | 16 struct icc_bulk_data *paths) in of_icc_bulk_get() argument 21 paths[i].path = of_icc_get(dev, paths[i].name); in of_icc_bulk_get() 22 if (IS_ERR(paths[i].path)) { in of_icc_bulk_get() 23 ret = PTR_ERR(paths[i].path); in of_icc_bulk_get() 26 paths[i].name, ret); in of_icc_bulk_get() 27 paths[i].path = NULL; in of_icc_bulk_get() 35 icc_bulk_put(i, paths); in of_icc_bulk_get() 46 void icc_bulk_put(int num_paths, struct icc_bulk_data *paths) in icc_bulk_put() argument 49 icc_put(paths[num_paths].path); in icc_bulk_put() 50 paths[num_paths].path = NULL; in icc_bulk_put() [all …]
|
| /OK3568_Linux_fs/buildroot/package/linphone/ |
| H A D | 0001-src-core-paths-paths.cpp-fix-powerpc-build.patch | 4 Subject: [PATCH] src/core/paths/paths.cpp: fix powerpc build 8 /home/test/autobuild/run/instance-2/output-1/build/linphone-4.3.1/src/core/paths/paths.cpp:32:3: er… 17 src/core/paths/paths.cpp | 2 +- 20 diff --git a/src/core/paths/paths.cpp b/src/core/paths/paths.cpp 22 --- a/src/core/paths/paths.cpp 23 +++ b/src/core/paths/paths.cpp 25 #include "paths-android.h" 27 #include "paths-windows.h" 30 #include "paths-linux.h"
|
| /OK3568_Linux_fs/kernel/drivers/thunderbolt/ |
| H A D | tunnel.c | 72 tunnel->paths = kcalloc(npaths, sizeof(tunnel->paths[0]), GFP_KERNEL); in tb_tunnel_alloc() 73 if (!tunnel->paths) { in tb_tunnel_alloc() 168 tunnel->paths[TB_PCI_PATH_UP] = path; in tb_tunnel_discover_pci() 169 tb_pci_init_path(tunnel->paths[TB_PCI_PATH_UP]); in tb_tunnel_discover_pci() 175 tunnel->paths[TB_PCI_PATH_DOWN] = path; in tb_tunnel_discover_pci() 176 tb_pci_init_path(tunnel->paths[TB_PCI_PATH_DOWN]); in tb_tunnel_discover_pci() 239 tunnel->paths[TB_PCI_PATH_DOWN] = path; in tb_tunnel_alloc_pci() 248 tunnel->paths[TB_PCI_PATH_UP] = path; in tb_tunnel_alloc_pci() 512 struct tb_path **paths; in tb_dp_activate() local 515 paths = tunnel->paths; in tb_dp_activate() [all …]
|
| H A D | test.c | 1236 KUNIT_ASSERT_EQ(test, tunnel1->paths[0]->path_length, 2); in tb_test_tunnel_pcie() 1237 KUNIT_EXPECT_PTR_EQ(test, tunnel1->paths[0]->hops[0].in_port, down); in tb_test_tunnel_pcie() 1238 KUNIT_EXPECT_PTR_EQ(test, tunnel1->paths[0]->hops[1].out_port, up); in tb_test_tunnel_pcie() 1239 KUNIT_ASSERT_EQ(test, tunnel1->paths[1]->path_length, 2); in tb_test_tunnel_pcie() 1240 KUNIT_EXPECT_PTR_EQ(test, tunnel1->paths[1]->hops[0].in_port, up); in tb_test_tunnel_pcie() 1241 KUNIT_EXPECT_PTR_EQ(test, tunnel1->paths[1]->hops[1].out_port, down); in tb_test_tunnel_pcie() 1251 KUNIT_ASSERT_EQ(test, tunnel2->paths[0]->path_length, 2); in tb_test_tunnel_pcie() 1252 KUNIT_EXPECT_PTR_EQ(test, tunnel2->paths[0]->hops[0].in_port, down); in tb_test_tunnel_pcie() 1253 KUNIT_EXPECT_PTR_EQ(test, tunnel2->paths[0]->hops[1].out_port, up); in tb_test_tunnel_pcie() 1254 KUNIT_ASSERT_EQ(test, tunnel2->paths[1]->path_length, 2); in tb_test_tunnel_pcie() [all …]
|
| /OK3568_Linux_fs/kernel/tools/perf/ui/browsers/ |
| H A D | scripts.c | 28 char **paths; member 53 if (asprintf(&c->paths[c->index], in add_script_option() 73 if (asprintf(&c->paths[c->index], "%s %s", value, in scripts_config() 88 char *buf, *paths[SCRIPT_MAX_NO], *names[SCRIPT_MAX_NO]; in list_scripts() local 96 .paths = paths, in list_scripts() 122 paths[i] = names[i] + SCRIPT_NAMELEN; in list_scripts() 125 num = find_scripts(names + max_std, paths + max_std, SCRIPT_MAX_NO - max_std, in list_scripts() 145 strcpy(script_name, paths[choice]); in list_scripts() 152 zfree(&paths[i]); in list_scripts()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/vector-tile/1.0.2/include/mapbox/ |
| H A D | vector_tile.hpp | 232 GeometryCollectionType paths; in getGeometries() local 234 paths.emplace_back(); in getGeometries() 272 paths.reserve(len_reserve); in getGeometries() 277 paths.back().reserve(len_reserve + extra_coords); in getGeometries() 282 if (cmd == CommandType::MOVE_TO && !paths.back().empty()) { in getGeometries() 283 if (paths.back().size() < paths.back().capacity()) { in getGeometries() 288 paths.back().shrink_to_fit(); in getGeometries() 290 paths.emplace_back(); in getGeometries() 310 paths.back().emplace_back( in getGeometries() 315 if (!paths.back().empty()) { in getGeometries() [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/ |
| H A D | path.py | 11 def join(*paths): argument 13 return os.path.normpath("/".join(paths)) 268 def is_path_parent(possible_parent, *paths): argument 282 if not paths: 284 for path in paths: 298 paths = (path or os.environ.get('PATH', os.defpath)).split(':') 300 paths.reverse() 303 for index, element in enumerate(paths): 317 files.append((found_path, [os.path.join(p, rel) for p in paths[:index+1]])) 323 def canonicalize(paths, sep=','): argument [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/device-mapper/ |
| H A D | dm-service-time.rst | 11 The performance value is a relative throughput value among all paths 26 among all paths in the path-group. 30 other paths having a positive value are available. 43 among all paths in the path-group. 59 1. If the paths have the same 'relative_throughput', skip 62 2. If the paths have the same 'in-flight-size', skip the division 65 3. If some paths have non-zero 'relative_throughput' and others 66 have zero 'relative_throughput', ignore those paths with zero 78 In case that 2 paths (sda and sdb) are used with repeat_count == 128
|
| H A D | switch.rst | 7 paths. The path used for any specific region can be switched 38 robin algorithm to send I/O across all paths and let the storage array 52 Lower Tier - Load balance amongst paths to a particular member. 55 Each of these multipath devices contains the set of paths directly to 57 selectors to load balance amongst these paths. We also build a 58 non-preferred priority group containing paths to other array members for 73 The number of paths across which to distribute the I/O. 77 to any of the available paths. 97 which paths.
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/testing/ |
| H A D | sysfs-class-rtrs-client | 37 What: /sys/class/rtrs-client/<session-name>/paths/ 45 What: /sys/class/rtrs-client/<session-name>/paths/<src@dst>/state 52 What: /sys/class/rtrs-client/<session-name>/paths/<src@dst>/reconnect 59 What: /sys/class/rtrs-client/<session-name>/paths/<src@dst>/disconnect 66 What: /sys/class/rtrs-client/<session-name>/paths/<src@dst>/remove_path 74 What: /sys/class/rtrs-client/<session-name>/paths/<src@dst>/hca_name 80 What: /sys/class/rtrs-client/<session-name>/paths/<src@dst>/hca_port 86 What: /sys/class/rtrs-client/<session-name>/paths/<src@dst>/src_addr 92 What: /sys/class/rtrs-client/<session-name>/paths/<src@dst>/dst_addr 98 What: /sys/class/rtrs-client/<session-name>/paths/<src@dst>/stats/reset_all [all …]
|
| H A D | sysfs-class-rtrs-server | 8 What: /sys/class/rtrs-server/<session-name>/paths/ 16 What: /sys/class/rtrs-server/<session-name>/paths/<src@dst>/disconnect 23 What: /sys/class/rtrs-server/<session-name>/paths/<src@dst>/hca_name 29 What: /sys/class/rtrs-server/<session-name>/paths/<src@dst>/hca_port 35 What: /sys/class/rtrs-server/<session-name>/paths/<src@dst>/src_addr 41 What: /sys/class/rtrs-server/<session-name>/paths/<src@dst>/dst_addr 47 What: /sys/class/rtrs-server/<session-name>/paths/<src@dst>/stats/rdma
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | interconnect.h | 42 struct icc_bulk_data *paths); 43 void icc_bulk_put(int num_paths, struct icc_bulk_data *paths); 44 int icc_bulk_set_bw(int num_paths, const struct icc_bulk_data *paths); 45 int icc_bulk_enable(int num_paths, const struct icc_bulk_data *paths); 46 void icc_bulk_disable(int num_paths, const struct icc_bulk_data *paths);
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/prog_tests/ |
| H A D | d_path.c | 17 char paths[MAX_FILES][MAX_PATH_LEN]; member 25 return readlink(buf, src.paths[src.cnt++], MAX_PATH_LEN); in set_pathname() 134 CHECK(strncmp(src.paths[i], bss->paths_stat[i], MAX_PATH_LEN), in test_d_path() 137 i, src.paths[i], bss->paths_stat[i]); in test_d_path() 138 CHECK(strncmp(src.paths[i], bss->paths_close[i], MAX_PATH_LEN), in test_d_path() 141 i, src.paths[i], bss->paths_close[i]); in test_d_path()
|
| /OK3568_Linux_fs/kernel/scripts/ |
| H A D | leaking_addresses.pl | 521 my ($total, $dmesg, $paths, $files) = parse_raw_file($file); 534 squash_by($paths, 'path'); 561 my %paths; # Unique paths containing leaks. 572 cache_path(\%paths, $line); 576 return $total, \@dmesg, \%paths, \%files; 618 my ($paths, $line) = @_; 624 add_to_cache($paths, $path, substr($line, $index));
|
| /OK3568_Linux_fs/kernel/tools/perf/ |
| H A D | Build | 36 paths += -DPERF_HTML_PATH="BUILD_STR($(htmldir_SQ))" 37 paths += -DPERF_INFO_PATH="BUILD_STR($(infodir_SQ))" 38 paths += -DPERF_MAN_PATH="BUILD_STR($(mandir_SQ))" 40 CFLAGS_builtin-help.o += $(paths) 41 CFLAGS_builtin-timechart.o += $(paths)
|
| /OK3568_Linux_fs/kernel/drivers/block/rnbd/ |
| H A D | rnbd-clt-sysfs.c | 56 struct rtrs_addr *paths; member 119 &opt->paths[p_cnt]); in rnbd_clt_parse_map_options() 541 struct rtrs_addr paths[6]; in rnbd_clt_map_device_store() local 545 opt.paths = paths; in rnbd_clt_map_device_store() 550 addrs = kcalloc(ARRAY_SIZE(paths) * 2, sizeof(*addrs), GFP_KERNEL); in rnbd_clt_map_device_store() 554 for (path_cnt = 0; path_cnt < ARRAY_SIZE(paths); path_cnt++) { in rnbd_clt_map_device_store() 555 paths[path_cnt].src = &addrs[path_cnt * 2]; in rnbd_clt_map_device_store() 556 paths[path_cnt].dst = &addrs[path_cnt * 2 + 1]; in rnbd_clt_map_device_store() 559 ret = rnbd_clt_parse_map_options(buf, ARRAY_SIZE(paths), &opt); in rnbd_clt_map_device_store() 567 dev = rnbd_clt_map_device(sessname, paths, path_cnt, port_nr, pathname, in rnbd_clt_map_device_store()
|
| /OK3568_Linux_fs/buildroot/docs/manual/ |
| H A D | ccache-support.txt | 43 To avoid this issue, buildroot has the +Use relative paths+ option 44 (+BR2_CCACHE_USE_BASEDIR+). This will rewrite all absolute paths that 45 point inside the output directory into relative paths. Thus, changing 48 A disadvantage of the relative paths is that they also end up to be 49 relative paths in the object file. Therefore, for example, the debugger 55 more details about this rewriting of absolute paths.
|
| /OK3568_Linux_fs/kernel/include/trace/events/ |
| H A D | asoc.h | 192 TP_PROTO(int paths, int stream), 194 TP_ARGS(paths, stream), 197 __field( int, paths ) 202 __entry->paths = paths; 207 __entry->stream ? "capture" : "playback", __entry->paths)
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/libtool/libtool/ |
| H A D | 0005-ltmain.in-Don-t-encode-RATHS-which-match-default-lin.patch | 2 Subject: [PATCH 05/12] ltmain.in: Don't encode RATHS which match default linker paths 4 We don't want to add RPATHS which match default linker search paths, they're 5 a waste of space. This patch filters libtools list of paths to encoode and 8 Libtool may be passed link paths of the form "/usr/lib/../lib" so normalize 9 the paths before comparision.
|
| /OK3568_Linux_fs/u-boot/tools/buildman/ |
| H A D | toolchain.py | 187 self.paths = [] 208 paths = [] 211 paths += glob.glob(value) 213 paths.append(value) 214 return paths 223 self.paths += self.GetPathList(show_warning) 311 for path in self.paths: 514 paths = self.GetPathList(False) 515 return path in paths
|
| /OK3568_Linux_fs/buildroot/package/pkgconf/ |
| H A D | 0001-Only-prefix-with-the-sysroot-a-subset-of-variables.patch | 6 The standard logic of pkg-config is to prefix all absolute paths by 8 paths (like includedir, libdir, and paths used in -L and -I options) 10 case for paths that are used on the target. If they get prefixed by 17 So, let's simply have a whitelist of paths that should be prefixed: 20 Buildroot development. All other paths are not prefixed by the sysroot. 23 [Updated to include gobject-introspection paths]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-support/libffi/libffi/ |
| H A D | not-win32.patch | 4 Subject: [PATCH] libffi: ensure sysroot paths are not in libffi.pc 7 introduces convoluted path manipulation involving gcc search paths to the 8 install paths, resulting in paths like -L/usr/lib/../lib/ appearing in
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3/ |
| H A D | 0001-setup.py-Do-not-detect-multiarch-paths-when-cross-co.patch | 4 Subject: [PATCH] setup.py: Do not detect multiarch paths when cross-compiling 8 adding native paths in includes in certain cases, e.g. when building 10 distributions e.g. ubuntu, it ends up adding native multiarch paths 13 with multiarch ends up adding these paths to compiler cmdline which
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | minidebuginfo.py | 32 paths = [os.path.join(native_sysroot, "usr", "bin", target_sys)] 33 paths += env["PATH"].split(":") 34 env["PATH"] = ":".join(paths)
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | cross.bbclass | 46 # This class encodes staging paths into its scripts data so can only be 47 # reused if we manipulate the paths. 52 # target paths. 60 # Overrides for paths
|