Home
last modified time | relevance | path

Searched refs:sigs (Results 1 – 25 of 32) sorted by relevance

12

/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/
H A Dfitimage.py151 sigs = {}
163 if not itsdotpath in sigs:
164 sigs[itsdotpath] = {}
168 sigs[itsdotpath][key.rstrip()] = value.lstrip().rstrip(';')
184 for itspath, values in sigs.items():
478 sigs = {}
490 if not itsdotpath in sigs:
491 sigs[itsdotpath] = {}
495 sigs[itsdotpath][key.rstrip()] = value.lstrip().rstrip(';')
506 for itspath, values in sigs.items():
[all …]
/OK3568_Linux_fs/kernel/drivers/tty/serial/
H A Dmcf.c54 unsigned int sigs; /* Local copy of line sigs */ member
71 unsigned int sigs; in mcf_get_mctrl() local
73 sigs = (readb(port->membase + MCFUART_UIPR) & MCFUART_UIPR_CTS) ? in mcf_get_mctrl()
75 sigs |= (pp->sigs & TIOCM_RTS); in mcf_get_mctrl()
76 sigs |= (mcf_getppdcd(port->line) ? TIOCM_CD : 0); in mcf_get_mctrl()
77 sigs |= (mcf_getppdtr(port->line) ? TIOCM_DTR : 0); in mcf_get_mctrl()
79 return sigs; in mcf_get_mctrl()
84 static void mcf_set_mctrl(struct uart_port *port, unsigned int sigs) in mcf_set_mctrl() argument
88 pp->sigs = sigs; in mcf_set_mctrl()
89 mcf_setppdtr(port->line, (sigs & TIOCM_DTR)); in mcf_set_mctrl()
[all …]
H A Daltera_uart.c80 unsigned int sigs; /* Local copy of line sigs */ member
103 unsigned int sigs; in altera_uart_get_mctrl() local
105 sigs = (altera_uart_readl(port, ALTERA_UART_STATUS_REG) & in altera_uart_get_mctrl()
107 sigs |= (pp->sigs & TIOCM_RTS); in altera_uart_get_mctrl()
109 return sigs; in altera_uart_get_mctrl()
126 static void altera_uart_set_mctrl(struct uart_port *port, unsigned int sigs) in altera_uart_set_mctrl() argument
130 pp->sigs = sigs; in altera_uart_set_mctrl()
131 if (sigs & TIOCM_RTS) in altera_uart_set_mctrl()
H A Daltera_jtaguart.c58 unsigned int sigs; /* Local copy of line sigs */ member
73 static void altera_jtaguart_set_mctrl(struct uart_port *port, unsigned int sigs) in altera_jtaguart_set_mctrl() argument
/OK3568_Linux_fs/external/rkwifibt/tools/rtk_hciattach/
H A Dhciattach.c371 sigset_t sigs; in main() local
556 sigfillset(&sigs); in main()
557 sigdelset(&sigs, SIGCHLD); in main()
558 sigdelset(&sigs, SIGPIPE); in main()
559 sigdelset(&sigs, SIGTERM); in main()
560 sigdelset(&sigs, SIGINT); in main()
561 sigdelset(&sigs, SIGHUP); in main()
565 err = ppoll(&p, 1, NULL, &sigs); in main()
/OK3568_Linux_fs/kernel/arch/um/drivers/
H A Dchan_user.c147 sigset_t sigs; in winch_thread() local
166 sigfillset(&sigs); in winch_thread()
168 if (sigprocmask(SIG_SETMASK, &sigs, NULL) < 0) { in winch_thread()
174 sigdelset(&sigs, SIGWINCH); in winch_thread()
210 sigsuspend(&sigs); in winch_thread()
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/meta/
H A Dmeta-extsdk-toolchain.bb13 LOCKED_SIGS_INDIR = "${WORKDIR}/locked-sigs"
18 do_locked_sigs[sstate-outputdirs] = "${STAGING_DIR}/${PACKAGE_ARCH}/${PN}/locked-sigs"
27 sigfile = os.path.join(outdir, 'locked-sigs-extsdk-toolchain.inc')
H A Dmeta-world-pkgdata.bb26 sigfile = os.path.join(outdir, 'locked-sigs-pkgdata.inc')
/OK3568_Linux_fs/kernel/fs/nfs/blocklayout/
H A Ddev.c79 p = xdr_decode_hyper(p, &b->simple.sigs[i].offset); in nfs4_block_decode_volume()
80 b->simple.sigs[i].sig_len = be32_to_cpup(p++); in nfs4_block_decode_volume()
81 if (b->simple.sigs[i].sig_len > PNFS_BLOCK_UUID_LEN) { in nfs4_block_decode_volume()
83 b->simple.sigs[i].sig_len); in nfs4_block_decode_volume()
87 p = xdr_inline_decode(xdr, b->simple.sigs[i].sig_len); in nfs4_block_decode_volume()
90 memcpy(&b->simple.sigs[i].sig, p, in nfs4_block_decode_volume()
91 b->simple.sigs[i].sig_len); in nfs4_block_decode_volume()
94 (XDR_QUADLEN(b->simple.sigs[i].sig_len) << 2); in nfs4_block_decode_volume()
H A Drpc_pipefs.c46 p = xdr_encode_hyper(p, b->simple.sigs[i].offset); in nfs4_encode_simple()
47 p = xdr_encode_opaque(p, b->simple.sigs[i].sig, in nfs4_encode_simple()
48 b->simple.sigs[i].sig_len); in nfs4_encode_simple()
H A Dblocklayout.h68 } sigs[PNFS_BLOCK_MAX_UUIDS]; member
/OK3568_Linux_fs/yocto/poky/scripts/
H A Dgen-lockedsig-cache65 sigs = [] variable
73 sigs.append(sig)
79 for s in sigs:
H A Dbuildhistory-diff116 args.report_all, args.report_ver, args.sigs,
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-devtools/rtl-tools/files/
H A Dhciattach.c1252 sigset_t sigs; in main() local
1414 sigfillset(&sigs); in main()
1415 sigdelset(&sigs, SIGCHLD); in main()
1416 sigdelset(&sigs, SIGPIPE); in main()
1417 sigdelset(&sigs, SIGTERM); in main()
1418 sigdelset(&sigs, SIGINT); in main()
1419 sigdelset(&sigs, SIGHUP); in main()
1423 err = ppoll(&p, 1, NULL, &sigs); in main()
/OK3568_Linux_fs/yocto/poky/scripts/lib/checklayer/
H A D__init__.py298 sigs = {}
347 sigs[s.group('task')] = s.group('hash')
350 if not sigs:
353 return (sigs, tune2tasks)
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dpopulate_sdk_ext.bbclass244 unlockedsigs = os.path.join(baseoutpath, 'conf', 'unlocked-sigs.inc')
352 # Warn if the sigs in the locked-signature file don't match
393 f.write('require conf/locked-sigs.inc\n')
394 f.write('require conf/unlocked-sigs.inc\n')
455 sigfile = d.getVar('WORKDIR') + '/locked-sigs.inc'
456 lockedsigs_pruned = baseoutpath + '/conf/locked-sigs.inc'
457 #nativesdk-only sigfile to merge into locked-sigs.inc
502 lockedsigs_base = d.getVar('WORKDIR') + '/locked-sigs-base.inc'
503 lockedsigs_copy = d.getVar('WORKDIR') + '/locked-sigs-copy.inc'
507 … d.getVar('STAGING_DIR_HOST') + '/world-pkgdata/locked-sigs-pkgdata.inc',
[all …]
/OK3568_Linux_fs/buildroot/package/scrypt/
H A Dscrypt.hash1 # From http://www.tarsnap.com/scrypt/scrypt-sigs-1.3.1.asc
/OK3568_Linux_fs/buildroot/package/nmap/
H A Dnmap.hash1 # From https://nmap.org/dist/sigs/nmap-7.92.tar.bz2.digest.txt (lowercase)
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Dsstatesig.py90 sigs = {}
97 if pn not in sigs:
98 sigs[pn] = {}
99 sigs[pn][task] = [h, siggen_lockedsigs_var]
100 return sigs
H A Dbuildhistory_analysis.py527 sigs = {}
531 sigs[linesplit[0]] = linesplit[2]
535 return sigs
616 sigs=False, sigsdiff=False, exclude_path=None): argument
624 if sigs or sigsdiff:
H A Dcopy_buildsystem.py234 def write_sigs_file(fn, types, sigs): argument
239 lines = sigs[typename]
/OK3568_Linux_fs/yocto/poky/bitbake/bin/
H A Dbitbake-diffsigs32 def find_siginfo(tinfoil, pn, taskname, sigs=None): argument
38 ret = tinfoil.run_command('findSigInfo', pn, taskname, sigs)
H A Dbitbake-dumpsig32 def find_siginfo(tinfoil, pn, taskname, sigs=None): argument
38 ret = tinfoil.run_command('findSigInfo', pn, taskname, sigs)
/OK3568_Linux_fs/kernel/arch/x86/include/asm/
H A Dmicrocode_intel.h36 struct extended_signature sigs[0]; member
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dcommand.py770 sigs = params[2]
771 res = bb.siggen.find_siginfo(pn, taskname, sigs, command.cooker.databuilder.mcdata[mc])

12