Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\test_printf.c Create Date:2022-07-28 06:32:32
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:dentry

Proto:static void __init dentry(void)

Type:void

Parameter:Nothing

457  test("foo", "%pd", & test_dentry[0])
458  test("foo", "%pd2", & test_dentry[0])
460  test("(null)", "%pd", NULL)
461  test("(efault)", "%pd", PTR_INVALID)
462  test("(null)", "%pD", NULL)
463  test("(efault)", "%pD", PTR_INVALID)
465  test("romeo", "%pd", & test_dentry[3])
466  test("alfa/romeo", "%pd2", & test_dentry[3])
467  test("bravo/alfa/romeo", "%pd3", & test_dentry[3])
468  test("/bravo/alfa/romeo", "%pd4", & test_dentry[3])
469  test("/bravo/alfa", "%pd4", & test_dentry[2])
471  test("bravo/alfa |bravo/alfa ", "%-12pd2|%*pd2", & test_dentry[2], - 12, & test_dentry[2])
472  test(" bravo/alfa| bravo/alfa", "%12pd2|%*pd2", & test_dentry[2], 12, & test_dentry[2])
Caller
NameDescribe
test_pointer