Home
last modified time | relevance | path

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

12345

/linux/drivers/comedi/drivers/ni_routing/tools/
A Dconvert_csv_to_c.py56 lines = '\n'.join(lines)
113 return '\n'.join(lines)
259 f.write('\n'.join(s_chunks))
265 f.write('\n'.join(objs))
271 filename=EXTERN_H, externs='\n'.join(externs)))
275 return '\n'.join(chunks)
278 filename=os.path.join(self.OUTPUT_DIR, self.SET_C)
448 f.write('\n'.join(s_chunks))
454 f.write('\n'.join(objs))
464 return '\n'.join(chunks)
[all …]
A 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/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/
A Dvmmnv50.c154 list_for_each_entry(join, &vmm->join, head) { in nv50_vmm_pgd_pde()
155 nvkm_kmap(join->inst); in nv50_vmm_pgd_pde()
157 nvkm_done(join->inst); in nv50_vmm_pgd_pde()
328 list_for_each_entry(join, &vmm->join, head) { in nv50_vmm_part()
331 kfree(join); in nv50_vmm_part()
346 if (!(join = kmalloc(sizeof(*join), GFP_KERNEL))) in nv50_vmm_join()
348 join->inst = inst; in nv50_vmm_join()
349 list_add_tail(&join->head, &vmm->join); in nv50_vmm_join()
351 nvkm_kmap(join->inst); in nv50_vmm_join()
359 nvkm_done(join->inst); in nv50_vmm_join()
[all …]
A Dvmmgk20a.c38 .join = gf100_vmm_join,
53 .join = gf100_vmm_join,
A Dvmmgm20b.c26 .join = gm200_vmm_join,
42 .join = gm200_vmm_join,
A Dvmmgk104.c69 .join = gf100_vmm_join,
84 .join = gf100_vmm_join,
A Dvmmgm200.c111 .join = gm200_vmm_join,
127 .join = gm200_vmm_join,
/linux/drivers/net/wireless/ti/wl1251/
A 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()
297 join->dtim_interval = dtim_interval; in wl1251_cmd_join()
298 join->bss_type = bss_type; in wl1251_cmd_join()
299 join->channel = channel; in wl1251_cmd_join()
300 join->ctrl = JOIN_CMD_CTRL_TX_FLUSH; in wl1251_cmd_join()
302 ret = wl1251_cmd_send(wl, CMD_START_JOIN, join, sizeof(*join)); in wl1251_cmd_join()
[all …]
/linux/Documentation/sphinx/
A Dkfigure.py205 src_fname = path.join(translator.builder.srcdir, img_node['uri'])
223 dst_fname = path.join(translator.builder.outdir, fname + '.pdf')
229 dst_fname = path.join(
233 img_node['uri'] = path.join(
236 '*': path.join(translator.builder.imgpath, fname + '.svg')}
427 fname = path.join('%s-%s' % (srclang, sha1(hashobj).hexdigest()))
429 tmp_fname = path.join(
438 img_node['uri'] = path.join(self.builder.imgpath, fname + tmp_ext)
440 '*': path.join(self.builder.imgpath, fname + tmp_ext)}
480 srclang, ",".join(RENDER_MARKUP_EXT.keys())),
[all …]
A 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)))
A Dkernel_include.py91 path = os.path.join(self.standard_include_path, path[1:-1])
92 path = os.path.normpath(os.path.join(source_dir, path))
121 rawtext = ''.join(lines[startline:endline])
A Dmaintainers_include.py166 output = "\n".join(result)
186 path = os.path.join(path, "MAINTAINERS")
/linux/tools/testing/selftests/bpf/
A Dtest_bpftool_synctypes.py10 LINUX_ROOT = os.path.abspath(os.path.join(__file__,
12 BPFTOOL_DIR = os.path.join(LINUX_ROOT, 'tools/bpf/bpftool')
283 filename = os.path.join(BPFTOOL_DIR, 'prog.c')
298 filename = os.path.join(BPFTOOL_DIR, 'map.c')
310 filename = os.path.join(BPFTOOL_DIR, 'cgroup.c')
319 filename = os.path.join(BPFTOOL_DIR, 'common.c')
346 self.filename = os.path.join(BPFTOOL_DIR, filename)
353 filename = os.path.join(LINUX_ROOT, 'tools/include/uapi/linux/bpf.h')
386 filename = os.path.join(BPFTOOL_DIR, 'Documentation/bpftool-map.rst')
407 self.filename = os.path.join(BPFTOOL_DIR, filename)
[all …]
/linux/scripts/kconfig/tests/
A 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/tools/testing/kunit/
A Dkunit_kernel.py28 QEMU_CONFIGS_DIR = os.path.join(ABS_TOOL_PATH, 'qemu_configs')
32 default = os.path.join(build_dir, default)
72 print('Populating config with:\n$', ' '.join(command))
88 print('Building with:\n$', ' '.join(command))
124 kernel_path = os.path.join(build_dir, self._kernel_path)
133 print('Running tests with:\n$', ' '.join(qemu_command))
134 return subprocess.Popen(' '.join(qemu_command),
187 config_path = os.path.join(QEMU_CONFIGS_DIR, arch + '.py')
244 kunitconfig_path = os.path.join(kunitconfig_path, KUNITCONFIG_PATH)
271 ', '.join([str(e) for e in invalid])
[all …]
/linux/drivers/gpu/drm/i915/selftests/
A 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/tools/testing/selftests/tc-testing/
A 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/scripts/clang-tools/
A 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')
190 abs_path = os.path.abspath(os.path.join(root_directory, file_path))
/linux/scripts/gdb/linux/
A Dtimerlist.py65 text += "".join([x for x in print_active_timers(base)])
87 text += "\n".join([s.format(f, cpu_base[f]) for s, f in fmts])
105 text += "\n".join([s.format(f, ts[f]) for s, f in fmts])
176 return "".join(chunks)
/linux/drivers/net/wireless/st/cw1200/
A Dsta.c1210 struct wsm_join join = { in cw1200_do_join() local
1251 if (!join.basic_rate_set) in cw1200_do_join()
1252 join.basic_rate_set = 7; in cw1200_do_join()
1281 memcpy(join.bssid, bssid, sizeof(join.bssid)); in cw1200_do_join()
1284 join.bssid, in cw1200_do_join()
1292 join.ssid_len = ssidie[1]; in cw1200_do_join()
1293 memcpy(join.ssid, &ssidie[2], join.ssid_len); in cw1200_do_join()
1299 join.flags |= WSM_JOIN_FLAGS_P2P_GO; in cw1200_do_join()
1300 join.basic_rate_set = in cw1200_do_join()
1306 join.flags |= WSM_JOIN_FLAGS_FORCE; in cw1200_do_join()
[all …]
/linux/drivers/xen/xenbus/
A Dxenbus_xs.c388 static char *join(const char *dir, const char *name) in join() function
428 path = join(dir, node); in xenbus_directory()
466 path = join(dir, node); in xenbus_read()
486 path = join(dir, node); in xenbus_write()
508 path = join(dir, node); in xenbus_mkdir()
524 path = join(dir, node); in xenbus_rm()
/linux/scripts/
A Dcheckkconfigsymbols.py128 print("%s: %s" % (yel("Similar symbols"), ', '.join(sims)))
186 print("%s: %s" % (yel("Referencing files"), ", ".join(files)))
191 print("%s: %s" % (sims_out, ', '.join(sims)))
318 pool.join()
/linux/tools/kvm/kvm_stat/
A Dkvm_stat444 id_path = os.path.join(PATH_DEBUGFS_TRACING, 'events', trace_set,
572 path = os.path.join(PATH_DEBUGFS_TRACING, 'events', 'kvm')
623 path = os.path.join('/proc', str(self._pid), 'task')
791 if not os.path.exists(os.path.join(PATH_DEBUGFS_KVM, path)):
844 return int(open(os.path.join(PATH_DEBUGFS_KVM,
1380 return os.path.isdir(os.path.join('/proc/', str(pid)))
1649 ' to specify the desired pid'.format(" ".join(pids)))
1768 PATH_DEBUGFS_KVM = os.path.join(debugfs, 'kvm')
1769 PATH_DEBUGFS_TRACING = os.path.join(debugfs, 'tracing')
1783 not os.path.isdir(os.path.join('/proc/',
[all …]
/linux/Documentation/networking/
A Dmptcp-sysctl.rst37 Allow peers to send join requests to the IP address and port number used
39 sent to the peer at connection time, and whether such join requests are
/linux/arch/powerpc/sysdev/xics/
A Dxics-common.c87 void xics_set_cpu_giq(unsigned int gserver, unsigned int join) in xics_set_cpu_giq() argument
98 status = rtas_set_indicator_fast(GLOBAL_INTERRUPT_QUEUE, index, join); in xics_set_cpu_giq()
101 GLOBAL_INTERRUPT_QUEUE, index, join, status); in xics_set_cpu_giq()

Completed in 61 milliseconds

12345