Home
last modified time | relevance | path

Searched refs:join (Results 1 – 25 of 138) sorted by relevance

123456

/linux-6.6.21/drivers/comedi/drivers/ni_routing/tools/
Dconvert_csv_to_c.py56 lines = '\n'.join(lines)
113 return '\n'.join(lines)
152 """.format(filename=SET_C, extern_h=os.path.join(ITEMS_DIR, EXTERN_H))
241 sheet_filename = os.path.join(self.ITEMS_DIR,'{}.c'.format(S))
258 with open(os.path.join(self.OUTPUT_DIR, sheet_filename), 'w') as f:
259 f.write('\n'.join(s_chunks))
262 with open(os.path.join(self.OUTPUT_DIR, self.MKFILE_SEGMENTS), 'w') as f:
265 f.write('\n'.join(objs))
268 EXTERN_H = os.path.join(self.ITEMS_DIR, self.EXTERN_H)
269 with open(os.path.join(self.OUTPUT_DIR, EXTERN_H), 'w') as f:
[all …]
Dconvert_py_to_csv.py34 csv_fname = path.join(CSV_DIR, name + '.csv')
54 os.makedirs(path.join(CSV_DIR,d))
59 create_csv(path.join('route_values',family), dst_src_map, iter_src_values)
62 create_csv(path.join('device_routes',device), dst_src_map, iter_src)
/linux-6.6.21/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/
Dvmmnv50.c147 struct nvkm_vmm_join *join; in nv50_vmm_pgd_pde() local
154 list_for_each_entry(join, &vmm->join, head) { in nv50_vmm_pgd_pde()
155 nvkm_kmap(join->inst); in nv50_vmm_pgd_pde()
156 nvkm_wo64(join->inst, pdeo, data); in nv50_vmm_pgd_pde()
157 nvkm_done(join->inst); in nv50_vmm_pgd_pde()
329 struct nvkm_vmm_join *join; in nv50_vmm_part() local
331 list_for_each_entry(join, &vmm->join, head) { in nv50_vmm_part()
332 if (join->inst == inst) { in nv50_vmm_part()
333 list_del(&join->head); in nv50_vmm_part()
334 kfree(join); in nv50_vmm_part()
[all …]
Dvmmgk20a.c38 .join = gf100_vmm_join,
53 .join = gf100_vmm_join,
Dvmmgm20b.c26 .join = gm200_vmm_join,
42 .join = gm200_vmm_join,
Dvmmgk104.c69 .join = gf100_vmm_join,
84 .join = gf100_vmm_join,
/linux-6.6.21/scripts/
Drustdoc_test_gen.rs62 let joined_potential_components = potential_components.join("_") + ".rs"; in find_real_path()
64 .join("rust/kernel") in find_real_path()
65 .join(prefix) in find_real_path()
66 .join(&joined_potential_components) in find_real_path()
72 .join(prefix) in find_real_path()
73 .join(joined_potential_components), in find_real_path()
81 let prefix = prefix.join(components_prefix.join("_")); in find_real_path()
82 if srctree.join("rust/kernel").join(&prefix).is_dir() { in find_real_path()
/linux-6.6.21/tools/testing/selftests/bpf/
Dtest_bpftool_synctypes.py10 LINUX_ROOT = os.path.abspath(os.path.join(__file__,
13 os.path.join(LINUX_ROOT, 'tools/bpf/bpftool'))
15 os.path.join(BPFTOOL_DIR, 'bash-completion'))
17 os.path.join(BPFTOOL_DIR, 'Documentation'))
19 os.path.join(LINUX_ROOT, 'tools/include'))
304 filename = os.path.join(BPFTOOL_DIR, 'main.h')
330 filename = os.path.join(BPFTOOL_DOC_DIR, 'substitutions.rst')
353 filename = os.path.join(BPFTOOL_DIR, 'prog.c')
366 filename = os.path.join(BPFTOOL_DIR, 'map.c')
375 filename = os.path.join(BPFTOOL_DIR, 'cgroup.c')
[all …]
Dveristat.c1828 struct verif_stats_join *join; in handle_comparison_mode() local
1851 join = &env.join_stats[env.join_stat_cnt]; in handle_comparison_mode()
1852 memset(join, 0, sizeof(*join)); in handle_comparison_mode()
1856 join->file_name = base->file_name; in handle_comparison_mode()
1857 join->prog_name = base->prog_name; in handle_comparison_mode()
1858 join->stats_a = base; in handle_comparison_mode()
1859 join->stats_b = comp; in handle_comparison_mode()
1863 join->file_name = base->file_name; in handle_comparison_mode()
1864 join->prog_name = base->prog_name; in handle_comparison_mode()
1865 join->stats_a = base; in handle_comparison_mode()
[all …]
/linux-6.6.21/drivers/net/wireless/ti/wl1251/
Dcmd.c273 struct cmd_join *join; in wl1251_cmd_join() local
277 join = kzalloc(sizeof(*join), GFP_KERNEL); in wl1251_cmd_join()
278 if (!join) in wl1251_cmd_join()
286 bssid = (u8 *) &join->bssid_lsb; in wl1251_cmd_join()
290 join->rx_config_options = wl->rx_config; in wl1251_cmd_join()
291 join->rx_filter_options = wl->rx_filter; in wl1251_cmd_join()
293 join->basic_rate_set = RATE_MASK_1MBPS | RATE_MASK_2MBPS | in wl1251_cmd_join()
296 join->beacon_interval = beacon_interval; in wl1251_cmd_join()
297 join->dtim_interval = dtim_interval; in wl1251_cmd_join()
298 join->bss_type = bss_type; in wl1251_cmd_join()
[all …]
/linux-6.6.21/tools/testing/kunit/
Dkunit_kernel.py32 QEMU_CONFIGS_DIR = os.path.join(ABS_TOOL_PATH, 'qemu_configs')
66 print('Populating config with:\n$', ' '.join(command))
80 print('Building with:\n$', ' '.join(command))
117 kernel_path = os.path.join(build_dir, self._kernel_path)
122 '-append', ' '.join(params + [self._kernel_command_line]),
127 print('Running tests with:\n$', ' '.join(shlex.quote(arg) for arg in qemu_command))
147 linux_bin = os.path.join(build_dir, 'linux')
156 return os.path.join(build_dir, KCONFIG_PATH)
159 return os.path.join(build_dir, KUNITCONFIG_PATH)
162 return os.path.join(build_dir, OLD_KUNITCONFIG_PATH)
[all …]
/linux-6.6.21/scripts/kconfig/tests/
Dconftest.py18 CONF_PATH = os.path.abspath(os.path.join('scripts', 'kconfig', 'conf'))
66 shutil.copyfile(os.path.join(self._test_dir, dot_config),
67 os.path.join(temp_dir, '.config'))
94 with open(os.path.join(temp_dir, out_file)) as f:
104 print("[command]\n{}\n".format(' '.join(command)))
154 defconfig_path = os.path.join(self._test_dir, defconfig)
159 all_config_path = os.path.join(self._test_dir, all_config)
230 with open(os.path.join(self._test_dir, expected)) as f:
/linux-6.6.21/Documentation/sphinx/
Dkfigure.py258 src_fname = path.join(translator.builder.srcdir, img_node['uri'])
260 src_fname = path.join(translator.builder.outdir, img_node['uri'])
276 dst_fname = path.join(translator.builder.outdir, fname + '.pdf')
282 dst_fname = path.join(
286 img_node['uri'] = path.join(
289 '*': path.join(translator.builder.imgpath, fname + '.svg')}
305 dst_fname = path.join(translator.builder.outdir, fname + '.pdf')
325 svg_fname = path.join(translator.builder.outdir, fname + '.svg')
364 "Error #%d when calling: %s" % (exit_code, " ".join(cmd)))
397 kernellog.warn(app, "Error #%d when calling: %s" % (exit_code, " ".join(cmd)))
[all …]
Dkerneldoc.py113 'calling kernel-doc \'%s\'' % (" ".join(cmd)))
124 … 'kernel-doc \'%s\' failed with return code %d' % (" ".join(cmd), p.returncode))
152 (" ".join(cmd), str(e)))
Dkernel_include.py94 path = os.path.join(self.standard_include_path, path[1:-1])
95 path = os.path.normpath(os.path.join(source_dir, path))
124 rawtext = ''.join(lines[startline:endline])
Dkernel_abi.py81 os.path.join(srctree, 'scripts/get_abi.pl'),
84 '--dir', os.path.join(srctree, 'Documentation', self.arguments[0]),
Dkernel_feat.py86 os.path.join(srctree, 'scripts/get_feat.pl'),
90 os.path.join(srctree, 'Documentation', self.arguments[0]),
/linux-6.6.21/tools/testing/selftests/tc-testing/
Dtdc_helper.py37 print(curcase['id'] + ': (' + ', '.join(curcase['category']) + ") " + curcase['name'])
44 print(", ".join(str(s) for s in categories))
58 print("\n".join(str(s) for s in items))
/linux-6.6.21/drivers/gpu/drm/i915/selftests/
Di915_syncmap.c298 struct i915_syncmap *join; in igt_syncmap_join_above() local
304 join = sync->parent; in igt_syncmap_join_above()
305 if (!join) /* very first insert will have no parents */ in igt_syncmap_join_above()
308 if (!join->height) { in igt_syncmap_join_above()
314 if (hweight32(join->bitmap) != 2) { in igt_syncmap_join_above()
316 join->bitmap, hweight32(join->bitmap)); in igt_syncmap_join_above()
321 if (__sync_child(join)[__sync_branch_idx(join, context)] != sync) { in igt_syncmap_join_above() local
/linux-6.6.21/scripts/clang-tools/
Dgen_compile_commands.py86 exclude_dirs = [ os.path.join(directory, d) for d in _EXCLUDE_DIRS ]
96 yield os.path.join(dirpath, filename)
109 return os.path.join(dir, '.' + base + '.cmd')
176 abs_path = os.path.abspath(os.path.join(root_directory, file_path))
/linux-6.6.21/scripts/gdb/linux/
Dtimerlist.py64 text += "".join([x for x in print_active_timers(base)])
86 text += "\n".join([s.format(f, cpu_base[f]) for s, f in fmts])
104 text += "\n".join([s.format(f, ts[f]) for s, f in fmts])
177 return "".join(str(chunks))
/linux-6.6.21/tools/cgroup/
Dmemcg_shrinker.py15 path = os.path.join(root, cgroup)
28 count_path = os.path.join(root, shrinker, "count")
/linux-6.6.21/scripts/dtc/
Ddt-extract-compatibles47 compat_str = ' '.join(compatibles)
60 yield os.path.join(path, f)
/linux-6.6.21/drivers/net/wireless/st/cw1200/
Dsta.c1211 struct wsm_join join = { in cw1200_do_join() local
1252 if (!join.basic_rate_set) in cw1200_do_join()
1253 join.basic_rate_set = 7; in cw1200_do_join()
1259 join.beacon_interval = priv->beacon_int; in cw1200_do_join()
1276 join.dtim_period = priv->join_dtim_period; in cw1200_do_join()
1278 join.channel_number = priv->channel->hw_value; in cw1200_do_join()
1279 join.band = (priv->channel->band == NL80211_BAND_5GHZ) ? in cw1200_do_join()
1282 memcpy(join.bssid, bssid, sizeof(join.bssid)); in cw1200_do_join()
1285 join.bssid, in cw1200_do_join()
1286 join.dtim_period, priv->beacon_int); in cw1200_do_join()
[all …]
/linux-6.6.21/tools/perf/tests/shell/lib/
Dperf_json_output_lint.py65 input = '[\n' + ','.join(Lines) + '\n]'
98 print('Test failed for input:\n' + '\n'.join(Lines))

123456