Searched refs:sec (Results 26 - 50 of 435) sorted by relevance

1234567891011>>

/linux-master/drivers/nvdimm/
H A Dsecurity.c145 if (!nvdimm->sec.ops->change_key)
154 rc = nvdimm->sec.ops->change_key(nvdimm, data, data, NVDIMM_USER);
161 nvdimm->sec.flags = nvdimm_security_flags(nvdimm, NVDIMM_USER);
176 if (!nvdimm->sec.ops || !nvdimm->sec.ops->unlock
177 || !nvdimm->sec.flags)
182 nvdimm->sec.flags = nvdimm_security_flags(nvdimm, NVDIMM_USER);
185 if (test_bit(NVDIMM_SECURITY_DISABLED, &nvdimm->sec.flags))
200 if (test_bit(NVDIMM_SECURITY_UNLOCKED, &nvdimm->sec.flags)) {
208 rc = nvdimm->sec
[all...]
/linux-master/arch/s390/tools/
H A Drelocs.c195 struct section *sec = &secs[i]; local
202 sec->shdr.sh_name = elf_word_to_cpu(shdr.sh_name);
203 sec->shdr.sh_type = elf_word_to_cpu(shdr.sh_type);
204 sec->shdr.sh_flags = elf_xword_to_cpu(shdr.sh_flags);
205 sec->shdr.sh_addr = elf_addr_to_cpu(shdr.sh_addr);
206 sec->shdr.sh_offset = elf_off_to_cpu(shdr.sh_offset);
207 sec->shdr.sh_size = elf_xword_to_cpu(shdr.sh_size);
208 sec->shdr.sh_link = elf_word_to_cpu(shdr.sh_link);
209 sec->shdr.sh_info = elf_word_to_cpu(shdr.sh_info);
210 sec
224 struct section *sec = &secs[i]; local
266 do_reloc(struct section *sec, Elf_Rel *rel) argument
301 struct section *sec = &secs[i]; local
[all...]
/linux-master/drivers/net/wireless/realtek/rtw88/
H A Dsec.h28 int rtw_sec_get_free_cam(struct rtw_sec_desc *sec);
30 struct rtw_sec_desc *sec,
35 struct rtw_sec_desc *sec,
/linux-master/tools/perf/tests/workloads/
H A Dthloop.c34 int sec = 1; local
38 sec = atoi(argv[0]);
42 alarm(sec);
/linux-master/arch/mips/include/asm/
H A Dmc146818-time.h91 unsigned int year, mon, day, hour, min, sec; local
97 sec = CMOS_READ(RTC_SECONDS);
103 } while (sec != CMOS_READ(RTC_SECONDS));
106 sec = bcd2bin(sec);
116 return mktime64(year, mon, day, hour, min, sec);
/linux-master/arch/arm/mach-exynos/
H A Dexynos-smc.S14 .arch_extension sec
/linux-master/arch/mips/sibyte/swarm/
H A Dsetup.c79 time64_t sec; local
83 sec = xicor_get_time();
87 sec = m41t81_get_time();
92 sec = mktime64(2000, 1, 1, 0, 0, 0);
95 ts->tv_sec = sec;
101 time64_t sec = now.tv_sec; local
105 return xicor_set_time(sec);
108 return m41t81_set_time(sec);
/linux-master/drivers/net/wireless/intel/ipw2x00/
H A Dlibipw_wx.c302 struct libipw_security sec = { local
347 sec.enabled = 0;
348 sec.encrypt = 0;
349 sec.level = SEC_LEVEL_0;
350 sec.flags |= SEC_ENABLED | SEC_LEVEL | SEC_ENCRYPT;
356 sec.enabled = 1;
357 sec.encrypt = 1;
358 sec.flags |= SEC_ENABLED | SEC_ENCRYPT;
398 memcpy(sec.keys[key], keybuf, erq->length);
400 memset(sec
468 struct libipw_security *sec = &ieee->sec; local
515 struct libipw_security sec = { local
671 struct libipw_security *sec = &ieee->sec; local
[all...]
/linux-master/drivers/crypto/hisilicon/
H A DMakefile3 obj-$(CONFIG_CRYPTO_DEV_HISI_SEC) += sec/
/linux-master/net/rxrpc/
H A Dsecurity.c70 const struct rxrpc_security *sec = &rxrpc_no_security; local
83 sec = rxrpc_security_lookup(token->security_index);
84 if (sec)
90 call->security = sec;
91 call->security_ix = sec->security_index;
133 const struct rxrpc_security *sec; local
138 sec = rxrpc_security_lookup(sp->hdr.securityIndex);
139 if (!sec) {
148 sec->no_key_abort, -EKEYREJECTED);
152 return sec;
[all...]
/linux-master/kernel/time/
H A Dvsyscall.c22 u64 nsec, sec; local
41 vdso_ts->sec = tk->xtime_sec + tk->wall_to_monotonic.tv_sec;
47 vdso_ts->sec++;
52 sec = vdso_ts->sec;
54 sec += tk->monotonic_to_boot.tv_sec;
59 vdso_ts->sec = sec;
63 vdso_ts->sec++;
69 vdso_ts->sec
[all...]
/linux-master/drivers/crypto/intel/qat/qat_common/
H A Dadf_cfg.c24 struct adf_cfg_section *sec = local
27 seq_printf(sfile, "[%s]\n", sec->name);
28 list_for_each(list, &sec->param_head) {
140 struct adf_cfg_section *sec)
142 list_add_tail(&new->list, &sec->param_head);
145 static void adf_cfg_keyval_remove(const char *key, struct adf_cfg_section *sec) argument
147 struct list_head *head = &sec->param_head;
222 struct adf_cfg_section *sec = adf_cfg_sec_find(accel_dev, sec_name); local
225 if (sec)
226 keyval = adf_cfg_key_value_find(sec, key_nam
139 adf_cfg_keyval_add(struct adf_cfg_key_val *new, struct adf_cfg_section *sec) argument
323 struct adf_cfg_section *sec = adf_cfg_sec_find(accel_dev, name); local
[all...]
/linux-master/tools/objtool/
H A Dcheck.c39 struct section *sec, unsigned long offset)
43 hash_for_each_possible(file->insn_hash, insn, hash, sec_offset_hash(sec, offset)) {
44 if (insn->sec == sec && insn->offset == offset)
55 return find_insn(file, insn->sec, insn->offset + insn->len);
81 return find_insn(file, func->cfunc->sec, func->cfunc->offset);
89 return find_insn(file, insn->sec, insn->offset - insn->prev_len);
114 for (insn = find_insn(file, func->sec, func->offset); \
119 for (insn = find_insn(file, sym->sec, sym->offset); \
216 insn = find_insn(file, func->sec, fun
38 find_insn(struct objtool_file *file, struct section *sec, unsigned long offset) argument
278 init_insn_state(struct objtool_file *file, struct insn_state *state, struct section *sec) argument
371 struct section *sec; local
567 find_last_insn(struct objtool_file *file, struct section *sec) argument
672 struct section *sec; local
761 struct section *sec; local
799 struct section *sec; local
837 struct section *sec; local
890 struct section *sec; local
940 struct section *sec; local
985 struct section *sec; local
1675 find_call_destination(struct section *sec, unsigned long offset) argument
2226 struct section *sec; local
2569 struct section *sec; local
3580 struct section *sec; local
3836 validate_unwind_hints(struct objtool_file *file, struct section *sec) argument
4198 struct section *sec; local
4216 validate_symbol(struct objtool_file *file, struct section *sec, struct symbol *sym, struct insn_state *state) argument
4242 validate_section(struct objtool_file *file, struct section *sec) argument
4263 struct section *sec; local
4289 struct section *sec; local
4453 struct section *sec; local
[all...]
/linux-master/drivers/rtc/
H A Drtc-tegra.c21 /* Set to 1 = busy every eight 32 kHz clocks during copy of sec+msec to AHB. */
106 u32 sec; local
115 sec = readl(info->base + TEGRA_RTC_REG_SHADOW_SECONDS);
119 rtc_time64_to_tm(sec, tm);
121 dev_vdbg(dev, "time read as %u, %ptR\n", sec, tm);
129 u32 sec; local
133 sec = rtc_tm_to_time64(tm);
135 dev_vdbg(dev, "time set to %u, %ptR\n", sec, tm);
140 writel(sec, info->base + TEGRA_RTC_REG_SECONDS);
151 u32 sec, valu local
196 u32 sec; local
[all...]
/linux-master/arch/mips/dec/
H A Dtime.c24 unsigned int year, mon, day, hour, min, sec, real_year; local
30 sec = CMOS_READ(RTC_SECONDS);
42 } while (sec != CMOS_READ(RTC_SECONDS));
47 sec = bcd2bin(sec);
57 ts->tv_sec = mktime64(year, mon, day, hour, min, sec);
/linux-master/scripts/
H A Dextract-sys-certs.pl107 foreach my $sec (@sections) {
108 my $s_name = $sec->{name};
109 my $s_vma = $sec->{vma};
110 my $s_len = $sec->{len};
111 my $s_foff = $sec->{foff};
135 $s = $sec;
/linux-master/fs/reiserfs/
H A Dxattr.h38 struct reiserfs_security_handle *sec);
41 struct reiserfs_security_handle *sec);
42 void reiserfs_security_free(struct reiserfs_security_handle *sec);
104 struct reiserfs_security_handle *sec)
111 struct reiserfs_security_handle *sec)
115 static inline void reiserfs_security_free(struct reiserfs_security_handle *sec) argument
101 reiserfs_security_init(struct inode *dir, struct inode *inode, const struct qstr *qstr, struct reiserfs_security_handle *sec) argument
109 reiserfs_security_write(struct reiserfs_transaction_handle *th, struct inode *inode, struct reiserfs_security_handle *sec) argument
/linux-master/arch/riscv/include/asm/
H A Dmodule.h37 const struct mod_section *sec)
39 struct got_entry *got = (struct got_entry *)(sec->shdr->sh_addr);
41 for (i = 0; i < sec->num_entries; i++) {
90 static inline int get_got_plt_idx(unsigned long val, const struct mod_section *sec) argument
92 struct got_entry *got_plt = (struct got_entry *)sec->shdr->sh_addr;
94 for (i = 0; i < sec->num_entries; i++) {
36 get_got_entry(unsigned long val, const struct mod_section *sec) argument
/linux-master/arch/loongarch/include/asm/
H A Dmodule.h75 static inline int get_plt_idx(unsigned long val, Elf_Shdr *sechdrs, const struct mod_section *sec) argument
78 struct plt_idx_entry *plt_idx = (struct plt_idx_entry *)sechdrs[sec->shndx].sh_addr;
80 for (i = 0; i < sec->num_entries; i++) {
104 const struct mod_section *sec)
107 struct got_entry *got = (struct got_entry *)sechdrs[sec->shndx].sh_addr;
109 for (i = 0; i < sec->num_entries; i++)
102 get_got_entry(Elf_Addr val, Elf_Shdr *sechdrs, const struct mod_section *sec) argument
/linux-master/drivers/net/wireless/realtek/rtlwifi/
H A Dcam.c12 rtlpriv->sec.use_defaultkey = false;
13 rtlpriv->sec.pairwise_enc_algorithm = NO_ENCRYPTION;
14 rtlpriv->sec.group_enc_algorithm = NO_ENCRYPTION;
15 memset(rtlpriv->sec.key_buf, 0, KEY_BUF_SIZE * MAX_KEY_LEN);
16 memset(rtlpriv->sec.key_len, 0, KEY_BUF_SIZE);
17 rtlpriv->sec.pairwise_key = NULL;
173 switch (rtlpriv->sec.pairwise_enc_algorithm) {
215 switch (rtlpriv->sec.pairwise_enc_algorithm) {
261 u32 bitmap = (rtlpriv->sec.hwsec_cam_bitmap) >> 4;
271 addr = rtlpriv->sec
[all...]
/linux-master/drivers/media/dvb-core/
H A Ddvb_demux.c90 return (f->feed.sec.crc_val = crc32_be(f->feed.sec.crc_val, src, len));
141 u8 xor = f->filter.filter_value[i] ^ feed->feed.sec.secbuf[i];
152 return feed->cb.sec(feed->feed.sec.secbuf, feed->feed.sec.seclen,
160 struct dmx_section_feed *sec = &feed->feed.sec; local
163 if (!sec->is_filtering)
169 if (sec
190 struct dmx_section_feed *sec = &feed->feed.sec; local
235 struct dmx_section_feed *sec = &feed->feed.sec; local
[all...]
/linux-master/arch/arm/mach-highbank/
H A Dsmc.S17 .arch_extension sec
/linux-master/arch/arm64/include/asm/
H A Dhyp_image.h64 #define KVM_NVHE_ALIAS_HYP(first, sec) kvm_nvhe_sym(first) = kvm_nvhe_sym(sec);
/linux-master/arch/x86/include/asm/
H A Dpvclock-abi.h39 u32 sec; member in struct:pvclock_wall_clock
/linux-master/tools/arch/x86/include/asm/
H A Dpvclock-abi.h39 u32 sec; member in struct:pvclock_wall_clock

Completed in 344 milliseconds

1234567891011>>