Home
last modified time | relevance | path

Searched refs:src_dir (Results 1 – 8 of 8) sorted by relevance

/linux/fs/hfsplus/
H A Dcatalog.c435 struct inode *src_dir, const struct qstr *src_name, in hfsplus_rename_cat() argument
438 struct super_block *sb = src_dir->i_sb; in hfsplus_rename_cat()
445 cnid, src_dir->i_ino, src_name->name, in hfsplus_rename_cat()
462 src_dir->i_ino, src_name); in hfsplus_rename_cat()
501 src_dir->i_ino, src_name); in hfsplus_rename_cat()
511 src_dir->i_size--; in hfsplus_rename_cat()
513 hfsplus_subfolders_dec(src_dir); in hfsplus_rename_cat()
514 inode_set_mtime_to_ts(src_dir, inode_set_ctime_current(src_dir)); in hfsplus_rename_cat()
544 hfsplus_mark_inode_dirty(src_dir, HFSPLUS_I_CAT_DIRTY); in hfsplus_rename_cat()
H A Ddir.c305 struct inode *src_dir = d_inode(src_dentry->d_parent); in hfsplus_link() local
317 src_dir->i_ino, dst_dir->i_ino, inode->i_ino); in hfsplus_link()
327 src_dir, &src_dentry->d_name, in hfsplus_link()
337 res = hfsplus_create_cat(cnid, src_dir, in hfsplus_link()
357 res = hfsplus_cat_write_inode(src_dir); in hfsplus_link()
/linux/tools/docs/
H A Dcheck-variable-fonts.py19 src_dir = os.path.dirname(os.path.realpath(__file__)) variable
20 sys.path.insert(0, os.path.join(src_dir, '../lib/python'))
H A Dparse-headers.py30 src_dir = os.path.dirname(os.path.realpath(__file__)) variable
31 sys.path.insert(0, os.path.join(src_dir, '../lib/python'))
H A Dsphinx-build-wrapper573 def handle_man(self, kerneldoc, docs_dir, src_dir, output_dir):
581 if docs_dir == src_dir: argument
589 for fname in glob(os.path.join(src_dir, "**"), recursive=True):
601 sys.exit(f"Directory {src_dir} doesn't contain kernel-doc tags")
614 sys.exit(f"Failed to create man pages for {src_dir}: {repr(e)}")
728 src_dir = os.path.join(docs_dir, sphinxdir)
735 src_dir = os.path.normpath(src_dir)
749 src_dir,
754 self.handle_man(kerneldoc, docs_dir, src_dir, output_di
[all...]
H A Dsphinx-pre-install37 src_dir = os.path.dirname(os.path.realpath(__file__)) variable
38 sys.path.insert(0, os.path.join(src_dir, '../lib/python'))
/linux/drivers/crypto/ti/
H A Ddthev2-aes.c280 enum dma_data_direction src_dir, dst_dir; in dthe_aes_run() local
300 src_dir = DMA_BIDIRECTIONAL; in dthe_aes_run()
304 src_dir = DMA_TO_DEVICE; in dthe_aes_run()
311 src_mapped_nents = dma_map_sg(tx_dev, src, src_nents, src_dir); in dthe_aes_run()
324 dma_unmap_sg(tx_dev, src, src_nents, src_dir); in dthe_aes_run()
389 dma_unmap_sg(tx_dev, src, src_nents, src_dir); in dthe_aes_run()
/linux/tools/testing/selftests/drivers/net/lib/py/
H A Denv.py34 src_dir = Path(self.src_path).parent.resolve()
35 if not (src_dir / "net.config").exists():
38 with open((src_dir / "net.config").as_posix(), 'r') as fp: