Home
last modified time | relevance | path

Searched full:cn (Results 1 – 25 of 997) sorted by relevance

12345678910>>...40

/openbmc/linux/drivers/w1/
H A Dw1_netlink.c26 struct cn_msg *cn; /* advances as cn_msg is appeneded */ member
40 /* pointers within w1_cb_block and cn data */
57 if (!block->cn) in w1_reply_len()
59 return (u8 *)block->cn - (u8 *)block->first_cn + block->cn->len; in w1_reply_len()
90 block->cn = NULL; in w1_reply_make_space()
99 if (!(block->request_cn.flags & W1_CN_BUNDLE) && block->cn) in w1_netlink_check_send()
106 * @ack: determines if cn can be reused
108 * block->cn will be setup with the correct ack, advancing if needed
109 * block->cn->len does not include space for block->msg
114 if (block->cn && block->cn->ack == ack) { in w1_netlink_setup_msg()
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/
H A Dhighlight.pack.js2cN?p(e.cN,"",!0):"",E=Object.create(e,{parent:{value:E}})}function m(e,n){if(k+=e,null==n)return b… property in AnonymousFunctioneac6a718e200.AnonymousClasseac6a718f901
/openbmc/linux/fs/
H A Dcoredump.c69 static int expand_corename(struct core_name *cn, int size) in expand_corename() argument
74 corename = krealloc(cn->corename, size, GFP_KERNEL); in expand_corename()
82 cn->size = size; in expand_corename()
83 cn->corename = corename; in expand_corename()
87 static __printf(2, 0) int cn_vprintf(struct core_name *cn, const char *fmt, in cn_vprintf() argument
94 free = cn->size - cn->used; in cn_vprintf()
97 need = vsnprintf(cn->corename + cn->used, free, fmt, arg_copy); in cn_vprintf()
101 cn->used += need; in cn_vprintf()
105 if (!expand_corename(cn, cn->size + need - free + 1)) in cn_vprintf()
111 static __printf(2, 3) int cn_printf(struct core_name *cn, const char *fmt, ...) in cn_printf() argument
[all …]
/openbmc/linux/fs/reiserfs/
H A Djournal.c90 static int can_dirty(struct reiserfs_journal_cnode *cn);
369 struct reiserfs_journal_cnode *cn; in get_cnode() local
379 cn = journal->j_cnode_free_list; in get_cnode()
380 if (!cn) { in get_cnode()
381 return cn; in get_cnode()
383 if (cn->next) { in get_cnode()
384 cn->next->prev = NULL; in get_cnode()
386 journal->j_cnode_free_list = cn->next; in get_cnode()
387 memset(cn, 0, sizeof(struct reiserfs_journal_cnode)); in get_cnode()
388 return cn; in get_cnode()
[all …]
/openbmc/linux/tools/perf/util/
H A Dcgroup.c211 struct cgroup_name *cn; in add_cgroup_name() local
216 cn = malloc(sizeof(*cn) + strlen(fpath) + 1); in add_cgroup_name()
217 if (cn == NULL) in add_cgroup_name()
220 cn->used = false; in add_cgroup_name()
221 strcpy(cn->name, fpath); in add_cgroup_name()
223 list_add_tail(&cn->list, &cgroup_list); in add_cgroup_name()
229 struct cgroup_name *cn; in check_and_add_cgroup_name() local
231 list_for_each_entry(cn, &cgroup_list, list) { in check_and_add_cgroup_name()
232 if (!strcmp(cn->name, fpath)) in check_and_add_cgroup_name()
242 struct cgroup_name *cn; in release_cgroup_list() local
[all …]
/openbmc/bmcweb/http/
H A Dmutual_tls_meta.hpp15 // Parses a Meta internal TLS client certificate Subject CN in in mtlsMetaParseSslUser()
21 // Example client subject CN -> local user name: in mtlsMetaParseSslUser()
28 BMCWEB_LOG_WARNING("Invalid Meta TLS client cert Subject CN: '{}'", in mtlsMetaParseSslUser()
38 "Invalid/unsupported entityType='{}' in Meta TLS client cert Subject CN: '{}'", in mtlsMetaParseSslUser()
48 // No '/' character, Subject CN is just '<entityType>:<entity>' in mtlsMetaParseSslUser()
53 // Subject CN ends with /<hostname> in mtlsMetaParseSslUser()
61 "Invalid entity='{}' in Meta TLS client cert Subject CN: '{}'", in mtlsMetaParseSslUser()
69 BMCWEB_LOG_DEBUG("Invalid Meta TLS client cert Subject CN: '{}'", in mtlsMetaParseSslUser()
/openbmc/linux/fs/nfsd/
H A Dnfs4recover.c797 struct cld_net *cn = nn->cld_net; in __cld_pipe_inprogress_downcall() local
848 cn->cn_has_legacy = true; in __cld_pipe_inprogress_downcall()
869 struct cld_net *cn = nn->cld_net; in cld_pipe_downcall() local
896 spin_lock(&cn->cn_lock); in cld_pipe_downcall()
897 list_for_each_entry(tmp, &cn->cn_list, cu_list) { in cld_pipe_downcall()
905 spin_unlock(&cn->cn_lock); in cld_pipe_downcall()
996 struct cld_net *cn; in __nfsd4_init_cld_pipe() local
1001 cn = kzalloc(sizeof(*cn), GFP_KERNEL); in __nfsd4_init_cld_pipe()
1002 if (!cn) { in __nfsd4_init_cld_pipe()
1007 cn->cn_pipe = rpc_mkpipe_data(&cld_upcall_ops, RPC_PIPE_WAIT_FOR_OPEN); in __nfsd4_init_cld_pipe()
[all …]
/openbmc/phosphor-user-manager/test/
H A Dldap_config_test.cpp135 "ldap://9.194.251.136/", "cn=Users,dc=com", "cn=Users,dc=corp", in TEST_F()
140 manager.createConfig("ldap://9.194.251.137/", "cn=Users", in TEST_F()
141 "cn=Users,dc=test", "MyLdap123", in TEST_F()
157 EXPECT_EQ(manager.getADConfigPtr()->ldapBindDN(), "cn=Users,dc=com"); in TEST_F()
158 EXPECT_EQ(manager.getADConfigPtr()->ldapBaseDN(), "cn=Users,dc=corp"); in TEST_F()
254 "ldap://9.194.251.138/", "cn=Users,dc=com", "cn=Users,dc=corp", in TEST_F()
269 EXPECT_EQ(managerPtr->getADConfigPtr()->ldapBindDN(), "cn=Users,dc=com"); in TEST_F()
270 EXPECT_EQ(managerPtr->getADConfigPtr()->ldapBaseDN(), "cn=Users,dc=corp"); in TEST_F()
304 "ldap://9.194.251.138/", "cn=Users,dc=com", "cn=Users,dc=corp", in TEST_F()
353 "ldap://9.194.251.138/", "cn=Users,dc=com", "cn=Users,dc=corp", in TEST_F()
[all …]
/openbmc/qemu/
H A D.mailmap33 fanwenjie <fanwj@mail.ustc.edu.cn> fanwj@mail.ustc.edu.cn <fanwj@mail.ustc.edu.cn>
87 Huacai Chen <chenhuacai@kernel.org> <chenhuacai@loongson.cn>
128 Brilly Wu <brillywu@viatech.com.cn>
130 CheneyLin <linzc@zju.edu.cn>
131 Chen Gang <chengang@emindsoft.com.cn>
133 Chen Gang <gang.chen@sunrus.com.cn>
146 Guang Wang <wang.guang55@zte.com.cn>
151 Hyman Huang <huangy81@chinatelecom.cn>
162 Li Guang <lig.fnst@cn.fujitsu.com>
164 linzhecheng <linzc@zju.edu.cn>
[all …]
/openbmc/linux/Documentation/maintainer/
H A Dmessy-diffstat.rst40 +-- c1 --- c2 --- ... --- cN
43 the mainline branch (let's call it "linus") and cN, there are still two
50 | +-- c1 --- c2 --- ... --- cN
56 for cN may end up being messy indeed, and developers often end up wondering
60 the ``git diff`` operation to use. The development culminating in cN
67 to cN.
82 | +-- c1 --- c2 --- ... --- cN |
/openbmc/linux/arch/arm/kernel/
H A Dtopology.c88 struct device_node *cn = NULL; in parse_dt_topology() local
102 cn = of_get_cpu_node(cpu, NULL); in parse_dt_topology()
103 if (!cn) { in parse_dt_topology()
108 if (topology_parse_cpu_capacity(cn, cpu)) { in parse_dt_topology()
109 of_node_put(cn); in parse_dt_topology()
116 if (of_device_is_compatible(cn, cpu_eff->compatible)) in parse_dt_topology()
122 rate = of_get_property(cn, "clock-frequency", &len); in parse_dt_topology()
124 pr_err("%pOF missing clock-frequency property\n", cn); in parse_dt_topology()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/anthy/anthy/
H A D2ch_t.patch57 +�����Τ��� #CN ���μ�
112 +�������� #CN ������
115 +���� #CN �奲
231 +���ᤶ���ͤäȤġ� #CN ���ᤶ���ͤäȣ�
235 +���᤾�� #CN ���᤾��
242 +���䤷������ #CN ���䤷������
245 +���䤷������ #CN ����ɤ�����
296 +����ʤ��Ϥ�� #CN ���濺̾
415 +���� #CN ��
441 +���� #CN ��
[all …]
/openbmc/linux/drivers/phy/freescale/
H A Dphy-fsl-imx8-mipi-dphy.c67 #define CN(x) (((x) == 1) ? 0x1f : (((CN_BUF) >> ((x) - 1)) & 0x1f)) macro
111 u32 cn; member
217 * CN ranges between 1 and 32 in mixel_dphy_config_from_opts()
223 cfg->cn = denominator >> i; in mixel_dphy_config_from_opts()
228 cfg->cn < 1 || cfg->cn > 32 || in mixel_dphy_config_from_opts()
230 dev_err(&phy->dev, "Invalid CM/CN/CO values: %u/%u/%u\n", in mixel_dphy_config_from_opts()
231 cfg->cm, cfg->cn, cfg->co); in mixel_dphy_config_from_opts()
338 priv->cfg.cn < 1 || priv->cfg.cn > 32 || in mixel_dphy_set_pll_params()
340 dev_err(&phy->dev, "Invalid CM/CN/CO values! (%u/%u/%u)\n", in mixel_dphy_set_pll_params()
341 priv->cfg.cm, priv->cfg.cn, priv->cfg.co); in mixel_dphy_set_pll_params()
[all …]
/openbmc/qemu/contrib/gitdm/
H A Ddomain-map15 cestc.cn Cestc
19 chinatelecom.cn China Telecom
32 loongson.cn Loongson Technology
/openbmc/linux/Documentation/translations/zh_CN/core-api/
H A Didr.rst9 周彬彬 Binbin Zhou <zhoubinbin@loongson.cn>
13 司延腾 Yanteng Si <siyanteng@loongson.cn>
14 吴想成 Wu Xiangcheng <bobwxc@email.cn>
/openbmc/linux/drivers/media/dvb-frontends/
H A Dtc90522.c259 s64 cn; in tc90522s_get_frontend() local
268 /* cn = cnr << 3 */ in tc90522s_get_frontend()
271 cn = div64_s64(-16346LL * p4 * p, 10) >> 35; in tc90522s_get_frontend()
272 cn += (14341LL * p4) >> 21; in tc90522s_get_frontend()
273 cn -= (50259LL * cndat * p) >> 23; in tc90522s_get_frontend()
274 cn += (88977LL * cndat) >> 9; in tc90522s_get_frontend()
275 cn -= (89565LL * p) >> 11; in tc90522s_get_frontend()
276 cn += 58857 << 3; in tc90522s_get_frontend()
277 stats->stat[0].svalue = cn >> 3; in tc90522s_get_frontend()
417 s64 cn; in tc90522t_get_frontend() local
[all …]
/openbmc/u-boot/arch/arm/mach-at91/armv7/
H A Dsama5d2_devices.c32 return "SAMA5D22-CN"; in get_cpu_name()
44 return "SAMA5D27-CN"; in get_cpu_name()
48 return "SAMA5D28-CN"; in get_cpu_name()
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Certs/
H A DCertificate.interface.yaml69 Example: C=US, O=DigiCert Inc, CN=DigiCert SHA2 Secure Server CA Here
70 C = country, O=organization, CN= common name.
82 OU=research, CN=www.research.ibm.com
83 Here C=country, ST=state, L=locality, O=organization, CN= common name.
/openbmc/qemu/tests/unit/
H A Dcrypto-tls-x509-helpers.h43 const char *cn; member
132 .cn = "qemu-CA", \
145 .cn = cname, \
163 .cn = hostname ? hostname : ipaddr, \
/openbmc/linux/drivers/connector/
H A DMakefile2 obj-$(CONFIG_CONNECTOR) += cn.o
5 cn-y += cn_queue.o connector.o
/openbmc/linux/arch/loongarch/include/asm/
H A Dunistd.h3 * Author: Hanlu Li <lihanlu@loongson.cn>
4 * Huacai Chen <chenhuacai@loongson.cn>
H A Dacenv.h5 * Author: Jianmin Lv <lvjianmin@loongson.cn>
6 * Huacai Chen <chenhuacai@loongson.cn>
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/dovecot/dovecot/
H A D0001-configure.ac-convert-AC_TRY_RUN-to-AC_TRY_LINK-state.patch2 From: Li xin <lixin.fnst@cn.fujitsu.com>
11 Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
13 Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
/openbmc/linux/arch/loongarch/include/uapi/asm/
H A Dbyteorder.h3 * Author: Hanlu Li <lihanlu@loongson.cn>
4 * Huacai Chen <chenhuacai@loongson.cn>
/openbmc/linux/drivers/staging/rts5208/
H A Dgeneral.h8 * Wei WANG (wei_wang@realsil.com.cn)
9 * Micky Ching (micky_ching@realsil.com.cn)

12345678910>>...40