/linux-4.1.27/security/selinux/ss/ |
D | context.h | 45 rc = ebitmap_cpy(&dst->range.level[0].cat, &src->range.level[0].cat); in mls_context_cpy() 50 rc = ebitmap_cpy(&dst->range.level[1].cat, &src->range.level[1].cat); in mls_context_cpy() 52 ebitmap_destroy(&dst->range.level[0].cat); in mls_context_cpy() 65 rc = ebitmap_cpy(&dst->range.level[0].cat, &src->range.level[0].cat); in mls_context_cpy_low() 70 rc = ebitmap_cpy(&dst->range.level[1].cat, &src->range.level[0].cat); in mls_context_cpy_low() 72 ebitmap_destroy(&dst->range.level[0].cat); in mls_context_cpy_low() 85 rc = ebitmap_cpy(&dst->range.level[0].cat, &src->range.level[1].cat); in mls_context_cpy_high() 90 rc = ebitmap_cpy(&dst->range.level[1].cat, &src->range.level[1].cat); in mls_context_cpy_high() 92 ebitmap_destroy(&dst->range.level[0].cat); in mls_context_cpy_high() 100 ebitmap_cmp(&c1->range.level[0].cat, &c2->range.level[0].cat) && in mls_context_cmp() [all …]
|
D | mls.c | 53 e = &context->range.level[l].cat; in mls_compute_context_len() 112 e = &context->range.level[l].cat; in mls_sid_to_context() 176 return ebitmap_contains(&levdatum->level->cat, &l->cat, in mls_level_isvalid() 314 rc = ebitmap_set_bit(&context->range.level[l].cat, in mls_context_to_sid() 335 rc = ebitmap_set_bit(&context->range.level[l].cat, i, 1); in mls_context_to_sid() 360 rc = ebitmap_cpy(&context->range.level[1].cat, in mls_context_to_sid() 361 &context->range.level[0].cat); in mls_context_to_sid() 410 rc = ebitmap_cpy(&context->range.level[l].cat, in mls_range_set() 411 &range->level[l].cat); in mls_range_set() 485 ebitmap_for_each_positive_bit(&c->range.level[l].cat, node, i) { in mls_convert_context() [all …]
|
D | mls_types.h | 22 struct ebitmap cat; /* category set */ member 32 ebitmap_cmp(&l1->cat, &l2->cat)); in mls_level_eq() 38 ebitmap_contains(&l1->cat, &l2->cat, 0)); in mls_level_dom()
|
D | policydb.c | 709 ebitmap_destroy(&usrdatum->range.level[0].cat); in user_destroy() 710 ebitmap_destroy(&usrdatum->range.level[1].cat); in user_destroy() 711 ebitmap_destroy(&usrdatum->dfltlevel.cat); in user_destroy() 724 ebitmap_destroy(&levdatum->level->cat); in sens_destroy() 764 ebitmap_destroy(&rt->level[0].cat); in range_tr_destroy() 765 ebitmap_destroy(&rt->level[1].cat); in range_tr_destroy() 1017 rc = ebitmap_read(&r->level[0].cat, fp); in mls_read_range_helper() 1023 rc = ebitmap_read(&r->level[1].cat, fp); in mls_read_range_helper() 1029 rc = ebitmap_cpy(&r->level[1].cat, &r->level[0].cat); in mls_read_range_helper() 1038 ebitmap_destroy(&r->level[0].cat); in mls_read_range_helper() [all …]
|
/linux-4.1.27/drivers/s390/net/ |
D | ctcm_dbug.h | 96 #define CTCM_DBF_DEV_NAME(cat, dev, text) \ argument 98 CTCM_DBF_TEXT_(cat, CTC_DBF_INFO, "%s(%s) :- %s", \ 102 #define MPC_DBF_DEV_NAME(cat, dev, text) \ argument 104 CTCM_DBF_TEXT_(MPC_##cat, CTC_DBF_INFO, "%s(%s) := %s", \ 108 #define CTCMY_DBF_DEV_NAME(cat, dev, text) \ argument 111 MPC_DBF_DEV_NAME(cat, dev, text); \ 113 CTCM_DBF_DEV_NAME(cat, dev, text); \ 121 #define CTCM_DBF_DEV(cat, dev, text) \ argument 123 CTCM_DBF_TEXT_(cat, CTC_DBF_INFO, "%s(%p) :-: %s", \ 127 #define MPC_DBF_DEV(cat, dev, text) \ argument [all …]
|
/linux-4.1.27/fs/ubifs/ |
D | lprops.c | 38 static int get_heap_comp_val(struct ubifs_lprops *lprops, int cat) in get_heap_comp_val() argument 40 switch (cat) { in get_heap_comp_val() 63 struct ubifs_lprops *lprops, int cat) in move_up_lpt_heap() argument 70 val1 = get_heap_comp_val(lprops, cat); in move_up_lpt_heap() 75 val2 = get_heap_comp_val(heap->arr[ppos], cat); in move_up_lpt_heap() 100 struct ubifs_lprops *lprops, int hpos, int cat) in adjust_lpt_heap() argument 104 val1 = get_heap_comp_val(lprops, cat); in adjust_lpt_heap() 109 val2 = get_heap_comp_val(heap->arr[ppos], cat); in adjust_lpt_heap() 121 val2 = get_heap_comp_val(heap->arr[ppos], cat); in adjust_lpt_heap() 135 val2 = get_heap_comp_val(heap->arr[cpos], cat); in adjust_lpt_heap() [all …]
|
D | lpt.c | 874 int cat = pnode->lprops[i].flags & LPROPS_CAT_MASK; in update_cats() local 879 ubifs_add_to_cat(c, &pnode->lprops[i], cat); in update_cats() 2107 int found, cat = lprops->flags & LPROPS_CAT_MASK; in dbg_chk_pnode() local 2119 if (cat != LPROPS_UNCAT) { in dbg_chk_pnode() 2121 lprops->lnum, cat); in dbg_chk_pnode() 2127 switch (cat) { in dbg_chk_pnode() 2134 lprops->lnum, cat); in dbg_chk_pnode() 2138 switch (cat) { in dbg_chk_pnode() 2147 lprops->lnum, cat); in dbg_chk_pnode() 2151 switch (cat) { in dbg_chk_pnode() [all …]
|
D | debug.h | 269 int cat); 294 void dbg_check_heap(struct ubifs_info *c, struct ubifs_lpt_heap *heap, int cat,
|
D | find.c | 56 int n, cat = lprops->flags & LPROPS_CAT_MASK; in valuable() local 59 switch (cat) { in valuable() 63 heap = &c->lpt_heap[cat - 1]; in valuable()
|
/linux-4.1.27/arch/microblaze/boot/ |
D | Makefile | 11 @echo 'Kernel: $@ is ready' ' (#'`cat .version`')' 15 @echo 'Kernel: $@ is ready' ' (#'`cat .version`')' 19 @echo 'Kernel: $@ is ready' ' (#'`cat .version`')' 22 cmd_cp = cat $< >$@$2 || (rm -f $@ && echo false) 35 @echo 'Kernel: $@ is ready' ' (#'`cat .version`')'
|
/linux-4.1.27/fs/hfs/ |
D | catalog.c | 25 key->cat.reserved = 0; in hfs_cat_build_key() 26 key->cat.ParID = cpu_to_be32(parent); in hfs_cat_build_key() 28 hfs_asc2mac(sb, &key->cat.CName, name); in hfs_cat_build_key() 29 key->key_len = 6 + key->cat.CName.len; in hfs_cat_build_key() 31 memset(&key->cat.CName, 0, sizeof(struct hfs_name)); in hfs_cat_build_key() 167 k1p = key1->cat.ParID; in hfs_cat_keycmp() 168 k2p = key2->cat.ParID; in hfs_cat_keycmp() 173 return hfs_strcmp(key1->cat.CName.name, key1->cat.CName.len, in hfs_cat_keycmp() 174 key2->cat.CName.name, key2->cat.CName.len); in hfs_cat_keycmp() 196 fd->search_key->cat.ParID = rec.thread.ParID; in hfs_cat_find_brec() [all …]
|
D | attr.c | 31 fd.search_key->cat = HFS_I(inode)->cat_key; in hfs_setxattr() 75 fd.search_key->cat = HFS_I(inode)->cat_key; in hfs_getxattr()
|
D | dir.c | 42 inode = hfs_iget(dir->i_sb, &fd.search_key->cat, &rec); in hfs_lookup() 111 if (be32_to_cpu(fd.key->cat.ParID) != inode->i_ino) { in hfs_readdir() 124 len = hfs_mac2asc(sb, strbuf, &fd.key->cat.CName); in hfs_readdir()
|
D | hfs.h | 166 struct hfs_cat_key cat; member
|
/linux-4.1.27/fs/hfsplus/ |
D | catalog.c | 20 k1p = k1->cat.parent; in hfsplus_cat_case_cmp_key() 21 k2p = k2->cat.parent; in hfsplus_cat_case_cmp_key() 25 return hfsplus_strcasecmp(&k1->cat.name, &k2->cat.name); in hfsplus_cat_case_cmp_key() 33 k1p = k1->cat.parent; in hfsplus_cat_bin_cmp_key() 34 k2p = k2->cat.parent; in hfsplus_cat_bin_cmp_key() 38 return hfsplus_strcmp(&k1->cat.name, &k2->cat.name); in hfsplus_cat_bin_cmp_key() 47 key->cat.parent = cpu_to_be32(parent); in hfsplus_cat_build_key() 48 err = hfsplus_asc2uni(sb, &key->cat.name, HFSPLUS_MAX_STRLEN, in hfsplus_cat_build_key() 53 len = be16_to_cpu(key->cat.name.length); in hfsplus_cat_build_key() 62 key->cat.parent = cpu_to_be32(parent); in hfsplus_cat_build_key_with_cnid() [all …]
|
D | bfind.c | 66 cur_cnid = fd->key->cat.parent; in hfs_find_1st_rec_by_cnid() 67 search_cnid = fd->search_key->cat.parent; in hfs_find_1st_rec_by_cnid()
|
D | dir.c | 193 if (be32_to_cpu(fd.key->cat.parent) != inode->i_ino) { in hfsplus_readdir() 208 err = hfsplus_uni2asc(sb, &fd.key->cat.name, strbuf, &len); in hfsplus_readdir()
|
/linux-4.1.27/Documentation/hwmon/ |
D | lm73 | 45 $ cat update_interval 47 $ cat temp1_input 51 $ cat update_interval 53 $ cat temp1_input 57 $ cat update_interval 59 $ cat temp1_input 63 $ cat update_interval 65 $ cat temp1_input
|
D | ds1621 | 145 $ cat update_interval 147 $ cat temp1_input 151 $ cat update_interval 153 $ cat temp1_input 157 $ cat update_interval 159 $ cat temp1_input 163 $ cat update_interval 165 $ cat temp1_input 169 $ cat update_interval 171 $ cat temp1_input
|
/linux-4.1.27/net/netlabel/ |
D | netlabel_cipso_v4.c | 264 doi_def->map.std->cat.local_size) in netlbl_cipsov4_add_std() 265 doi_def->map.std->cat.local_size = in netlbl_cipsov4_add_std() 273 doi_def->map.std->cat.cipso_size) in netlbl_cipsov4_add_std() 274 doi_def->map.std->cat.cipso_size = in netlbl_cipsov4_add_std() 279 doi_def->map.std->cat.local = kcalloc( in netlbl_cipsov4_add_std() 280 doi_def->map.std->cat.local_size, in netlbl_cipsov4_add_std() 283 if (doi_def->map.std->cat.local == NULL) { in netlbl_cipsov4_add_std() 287 doi_def->map.std->cat.cipso = kcalloc( in netlbl_cipsov4_add_std() 288 doi_def->map.std->cat.cipso_size, in netlbl_cipsov4_add_std() 291 if (doi_def->map.std->cat.cipso == NULL) { in netlbl_cipsov4_add_std() [all …]
|
/linux-4.1.27/tools/testing/selftests/ftrace/test.d/ftrace/ |
D | fgraph-filter-stack.tc | 61 count=`cat trace | grep '()' | grep -v schedule | wc -l` 68 count=`cat trace | grep 'schedule()' | wc -l` 78 count=`cat trace | grep '()' | grep -v schedule | wc -l` 84 count=`cat trace | grep 'schedule()' | wc -l`
|
D | fgraph-filter.tc | 39 count=`cat trace | grep '()' | grep -v schedule | wc -l` 45 count=`cat trace | grep 'schedule()' | wc -l`
|
D | func_profiler.tc | 63 cat trace 74 cat trace
|
/linux-4.1.27/scripts/ |
D | decodecode | 78 cat $T.dis >> $T.oo 90 cat $T.dis >> $T.aa 98 faultline=`cat $T.dis | head -1 | cut -d":" -f2-` 101 cat $T.oo | sed -e "${faultlinenum}s/^\(.*:\)\(.*\)/\1\*\2\t\t<-- trapping instruction/" 103 cat $T.aa
|
D | gen_initramfs_list.sh | 16 cat << EOF 51 cat <<-EOF >> ${output} 203 cat "$1" >> ${output} 206 cat "$1" | while read type dir file perm ; do 316 cat ${cpio_tfile} > ${output_file} 318 (cat ${cpio_tfile} | ${compr} - > ${output_file}) \
|
D | checksyscalls.sh | 13 cat << EOF 206 cat <<EOF
|
D | Makefile.lib | 227 cmd_shipped = cat $< > $@ 260 cmd_gzip = (cat $(filter-out FORCE,$^) | gzip -n -f -9 > $@) || \ 290 cat $(depfile).pre.tmp $(depfile).dtc.tmp > $(depfile) 382 cmd_xzkern = (cat $(filter-out FORCE,$^) | \ 388 cmd_xzmisc = (cat $(filter-out FORCE,$^) | \
|
D | mkversion | 5 expr 0`cat .version` + 1
|
D | gcc-goto.sh | 5 cat << "END" | $@ -x c - -c -o /dev/null >/dev/null 2>&1 && echo "y"
|
D | extract-vmlinux | 20 cat $1
|
D | mkmakefile | 24 cat << EOF > $2/Makefile
|
D | extract-ikconfig | 25 cat $tmp1
|
D | gfp-translate | 78 for LINE in `cat $TMPFILE`; do
|
D | mkcompile_h | 31 VERSION=`cat .version`
|
D | config | 10 cat >&2 <<EOL
|
D | Makefile.modbuiltin | 43 cat /dev/null $(modbuiltin-subdirs)) > $@
|
D | ver_linux | 96 X=`cat /proc/modules | sed -e "s/ .*$//"`
|
D | setlocalversion | 38 cat .scmversion
|
D | link-vmlinux.sh | 165 expr 0$(cat .old_version) + 1 >.version;
|
D | patch-kernel | 69 cat << USAGE
|
D | Makefile.build | 350 cat $m;, echo kernel/$m;)) 353 $(Q)(cat /dev/null; $(modorder-cmds)) > $@
|
/linux-4.1.27/net/ipv4/ |
D | cipso_ipv4.c | 557 kfree(doi_def->map.std->cat.cipso); in cipso_v4_doi_free() 558 kfree(doi_def->map.std->cat.local); in cipso_v4_doi_free() 831 int cat = -1; in cipso_v4_map_cat_rbm_valid() local 840 cipso_cat_size = doi_def->map.std->cat.cipso_size; in cipso_v4_map_cat_rbm_valid() 841 cipso_array = doi_def->map.std->cat.cipso; in cipso_v4_map_cat_rbm_valid() 843 cat = cipso_v4_bitmap_walk(bitmap, in cipso_v4_map_cat_rbm_valid() 845 cat + 1, in cipso_v4_map_cat_rbm_valid() 847 if (cat < 0) in cipso_v4_map_cat_rbm_valid() 849 if (cat >= cipso_cat_size || in cipso_v4_map_cat_rbm_valid() 850 cipso_array[cat] >= CIPSO_V4_INV_CAT) in cipso_v4_map_cat_rbm_valid() [all …]
|
/linux-4.1.27/tools/testing/selftests/ftrace/test.d/event/ |
D | toplevel-enable.tc | 31 count=`cat trace | grep -v ^# | wc -l` 42 count=`cat trace | grep -v ^# | wc -l` 53 count=`cat trace | grep -v ^# | wc -l`
|
D | subsystem-enable.tc | 31 count=`cat trace | grep -v ^# | awk '{ print $5 }' | sort -u | wc -l` 42 count=`cat trace | grep -v ^# | awk '{ print $5 }' | sort -u | wc -l` 53 count=`cat trace | grep -v ^# | awk '{ print $5 }' | sort -u | wc -l`
|
D | event-enable.tc | 31 count=`cat trace | grep sched_switch | wc -l` 42 count=`cat trace | grep sched_switch | wc -l` 53 count=`cat trace | grep sched_switch | wc -l`
|
/linux-4.1.27/samples/pktgen/ |
D | pktgen.conf-1-1 | 11 result=`cat $PGDEV | fgrep "Result: OK:"` 13 cat $PGDEV | fgrep Result: 59 cat /proc/net/pktgen/eth1
|
D | pktgen.conf-1-1-ip6 | 11 result=`cat $PGDEV | fgrep "Result: OK:"` 13 cat $PGDEV | fgrep Result: 60 cat /proc/net/pktgen/eth1
|
D | pktgen.conf-1-1-ip6-rdos | 11 result=`cat $PGDEV | fgrep "Result: OK:"` 13 cat $PGDEV | fgrep Result: 63 cat /proc/net/pktgen/eth1
|
D | pktgen.conf-1-1-rdos | 11 result=`cat $PGDEV | fgrep "Result: OK:"` 13 cat $PGDEV | fgrep Result: 64 cat /proc/net/pktgen/eth1
|
D | pktgen.conf-1-1-flows | 11 result=`cat $PGDEV | fgrep "Result: OK:"` 13 cat $PGDEV | fgrep Result: 67 cat /proc/net/pktgen/eth1
|
D | pktgen.conf-2-1 | 11 result=`cat $PGDEV | fgrep "Result: OK:"` 13 cat $PGDEV | fgrep Result: 66 cat /proc/net/pktgen/eth1
|
D | pktgen.conf-1-2 | 11 result=`cat $PGDEV | fgrep "Result: OK:"` 13 cat $PGDEV | fgrep Result: 69 cat /proc/net/pktgen/eth1 /proc/net/pktgen/eth2
|
D | pktgen.conf-2-2 | 11 result=`cat $PGDEV | fgrep "Result: OK:"` 13 cat $PGDEV | fgrep Result: 73 cat /proc/net/pktgen/eth1 /proc/net/pktgen/eth2
|
/linux-4.1.27/arch/s390/include/asm/ |
D | perf_event.h | 32 #define CPUMF_EVENT_ATTR(cat, name, id) \ argument 33 PMU_EVENT_ATTR(name, EVENT_VAR(cat, name), id, cpumf_events_sysfs_show) 34 #define CPUMF_EVENT_PTR(cat, name) EVENT_PTR(cat, name) argument
|
/linux-4.1.27/scripts/selinux/ |
D | install_policy.sh | 36 cat > /etc/selinux/config << EOF 41 TYPE=`cat /etc/selinux/config | grep "^SELINUXTYPE" | tail -1 | awk -F= '{ print $2 '}` 59 mounts=`cat /proc/$$/mounts | egrep "ext2|ext3|xfs|jfs|ext4|ext4dev|gfs2" | awk '{ print $2 '}` 63 dodev=`cat /proc/$$/mounts | grep "/dev "`
|
/linux-4.1.27/Documentation/ |
D | IRQ-affinity.txt | 22 [root@moon 44]# cat smp_affinity 26 [root@moon 44]# cat smp_affinity 34 [root@moon 44]# cat /proc/interrupts | grep 'CPU\|44:' 43 [root@moon 44]# cat smp_affinity 51 [root@moon 44]# cat /proc/interrupts | 'CPU\|44:' 61 [root@moon 44]# cat smp_affinity_list
|
D | pnp.txt | 53 # cat name 57 # cat resources 63 # cat options 79 # cat resources
|
D | btmrvl.txt | 77 cat /debug/btmrvl/status/<args>
|
D | gcov.txt | 198 Solution: Use 'cat' to read .gcda files and 'cp -d' to copy links. 251 find $GCDA -name '*.gcda' -exec sh -c 'cat < $0 > '$TEMPDIR'/$0' {} \;
|
/linux-4.1.27/tools/lguest/ |
D | extract | 52 if [ "$LASTFILE" != $(cat $TMPDIR/.$(basename $f) ) ]; then 53 LASTFILE=$(cat $TMPDIR/.$(basename $f) ) 56 cat $f
|
/linux-4.1.27/tools/testing/selftests/vm/ |
D | run_vmtests | 21 nr_hugepgs=`cat /proc/sys/vm/nr_hugepages` 50 shmmax=`cat /proc/sys/kernel/shmmax` 51 shmall=`cat /proc/sys/kernel/shmall`
|
/linux-4.1.27/tools/testing/selftests/rcutorture/bin/ |
D | parse-torture.sh | 88 print_warning $title $title `cat $T.seq` 95 print_warning HOTPLUG FAILURES $title `cat $T.seq` 102 print_warning $title `cat $T.seq`
|
D | configcheck.sh | 26 cat $1 > $T/.config 28 cat $2 | sed -e 's/\(.*\)=n/# \1 is not set/' -e 's/^#CHECK#//' |
|
D | parse-build.sh | 55 cat $T/hwarnings $T/cwarnings > $T/rcuwarnings 59 cat $T/rcuwarnings
|
D | kvm-build.sh | 49 cat << ___EOF___ >> $T/config 54 cat $moreconfigs >> $T/config
|
D | kvm.sh | 244 cat << ___EOF___ > $T/script 382 cat << ___EOF___ >> $T/script 392 cat $T/script
|
D | parse-console.sh | 43 cat $T
|
D | kvm-recheck.sh | 51 cat $i/Warnings
|
D | kvm-test-1-run.sh | 70 cat < $config_dir/CFcommon >> $T
|
/linux-4.1.27/arch/alpha/boot/ |
D | Makefile | 22 ( cat $(obj)/tools/lxboot $(obj)/tools/bootlx $(obj)/vmlinux.nh ) > $@ 28 cat $(obj)/tools/bootph $(obj)/vmlinux.nh > $@ 30 cat $(INITRD) >> $@ 36 cat $(obj)/tools/bootpzh $(obj)/vmlinux.nh.gz > $@ 38 cat $(INITRD) >> $@
|
/linux-4.1.27/arch/cris/include/arch-v32/arch/hwregs/iop/ |
D | Makefile | 86 cat $< | sed -e 's/\$$Id\:/id\:/g' >$@ 88 cat $< | sed -e 's/\$$Id\:/id\:/g' >$@ 95 cat $(IOPOFFICIAL_INCDIR)$$HFILE | sed -e 's/\$$Id\:/id\:/g' > $$HFILE; \ 99 cat $(IOPOFFICIAL_INCDIR)$$HFILE | sed -e 's/\$$Id\:/id\:/g' > $$HFILE; \ 104 cat $(IOPOFFICIAL_INCDIR)asm/$$HFILE | sed -e 's/\$$Id\:/id\:/g' > asm/$$HFILE; \
|
/linux-4.1.27/arch/cris/include/arch-v32/arch/hwregs/ |
D | Makefile | 100 cat $< | sed -e 's/\$$Id\:/id\:/g' >$@ 105 cat $< | sed -e 's/\$$Id\:/id\:/g' >$@ 120 cat $< | sed -e 's/\$$Id\:/id\:/g' >$@ 133 cat $< | sed -e 's/\$$Id\:/id\:/g' >$@ 140 cat $< | sed -e 's/\$$Id\:/id\:/g' >$@ 152 cat $(OFFICIAL_INCDIR)$$HFILE | sed -e 's/\$$Id\:/id\:/g' > $$HFILE; \ 156 cat $(OFFICIAL_INCDIR)asm/$$HFILE | sed -e 's/\$$Id\:/id\:/g' > $$HFILE; \
|
/linux-4.1.27/Documentation/misc-devices/ |
D | ad525x_dpot.txt | 47 # cat eeprom0 50 # cat eeprom0 53 # cat rdac0 56 # cat rdac0
|
D | c2port.txt | 66 # cat /sys/class/c2port/c2port0/dev_id 68 # cat /sys/class/c2port/c2port0/rev_id 78 # cat /sys/class/c2port/c2port0/flash_data > image 86 # cat image > /sys/class/c2port/c2port0/flash_data
|
D | spear-pcie-gadget.txt | 82 # cat bar0_size 101 # cat link 120 # cat link 125 # cat no_of_msi
|
/linux-4.1.27/security/smack/ |
D | smack_access.c | 497 int cat; in smk_netlbl_mls() local 503 sap->attr.mls.cat = NULL; in smk_netlbl_mls() 505 for (cat = 1, cp = catset, byte = 0; byte < len; cp++, byte++) in smk_netlbl_mls() 506 for (m = 0x80; m != 0; m >>= 1, cat++) { in smk_netlbl_mls() 509 rc = netlbl_catmap_setbit(&sap->attr.mls.cat, in smk_netlbl_mls() 510 cat, GFP_ATOMIC); in smk_netlbl_mls() 512 netlbl_catmap_free(sap->attr.mls.cat); in smk_netlbl_mls()
|
D | smackfs.c | 185 static inline void smack_catset_bit(unsigned int cat, char *catsetp) in smack_catset_bit() argument 187 if (cat == 0 || cat > (SMK_CIPSOLEN * 8)) in smack_catset_bit() 190 catsetp[(cat - 1) / 8] |= 0x80 >> ((cat - 1) % 8); in smack_catset_bit() 813 struct netlbl_lsm_catmap *cmp = skp->smk_netlabel.attr.mls.cat; in cipso_seq_show() 879 unsigned int cat; in smk_set_cipso() local 943 ret = sscanf(rule, "%u", &cat); in smk_set_cipso() 944 if (ret != 1 || cat > SMACK_CIPSO_MAXCATNUM) in smk_set_cipso() 947 smack_catset_bit(cat, mapcatset); in smk_set_cipso() 952 netlbl_catmap_free(skp->smk_netlabel.attr.mls.cat); in smk_set_cipso() 953 skp->smk_netlabel.attr.mls.cat = ncats.attr.mls.cat; in smk_set_cipso() [all …]
|
/linux-4.1.27/scripts/package/ |
D | builddeb | 73 revision=$(cat .version) 186 cat <<EOF > "$tmpdir/DEBIAN/$script" 232 cat <<EOF > debian/changelog 241 cat <<EOF > debian/copyright 315 cat <<EOF >> debian/control 331 cat <<EOF >> debian/control 342 cat <<EOF >> debian/control 372 cat <<EOF >> debian/control
|
D | Makefile | 114 echo $$(cat $(srctree)/tools/perf/MANIFEST)) \
|
/linux-4.1.27/arch/sh/boot/compressed/ |
D | install.sh | 41 cat $2 > $4/vmlinuz-$1 54 cat $2 > $4/vmlinux-$1
|
/linux-4.1.27/arch/m32r/boot/compressed/ |
D | install.sh | 42 cat $2 > $4/vmlinuz-$1 55 cat $2 > $4/vmlinux-$1
|
/linux-4.1.27/arch/powerpc/boot/ |
D | install.sh | 42 cat $2 > $4/$image_name 53 cat $1 > $path/$image_name
|
/linux-4.1.27/Documentation/cpu-freq/ |
D | cpufreq-stats.txt | 54 this CPU. The cat output will have "<frequency> <time>" pair in each line, which 60 <mysystem>:/sys/devices/system/cpu/cpu0/cpufreq/stats # cat time_in_state 70 This gives the total number of frequency transitions on this CPU. The cat 75 <mysystem>:/sys/devices/system/cpu/cpu0/cpufreq/stats # cat total_trans 81 transitions. The cat output here is a two dimensional matrix, where an entry 88 <mysystem>:/sys/devices/system/cpu/cpu0/cpufreq/stats # cat trans_table
|
/linux-4.1.27/tools/testing/selftests/firmware/ |
D | fw_filesystem.sh | 12 OLD_TIMEOUT=$(cat /sys/class/firmware/timeout) 13 OLD_FWPATH=$(cat /sys/module/firmware_class/parameters/path)
|
D | fw_userhelper.sh | 12 OLD_TIMEOUT=$(cat /sys/class/firmware/timeout) 44 cat "$file" >"$DIR"/"$name"/data
|
/linux-4.1.27/tools/power/cpupower/bench/ |
D | cpufreq-bench_plot.sh | 86 …cat ${file[$plot]} |grep -v "^#" |awk '{if ($2 != $3) printf("Error in measure %d:Load time %s doe… 91 cat ${file[$plot]} |grep -v "^#" |awk '{printf "%lu %.1f\n",$2/1000, $6}' >$dir/data_$plot
|
D | cpufreq-bench_script.sh | 45 up_threshold_set=$(cat /sys/devices/system/cpu/cpu0/cpufreq/ondemand/up_threshold) 46 sampling_rate_set=$(cat /sys/devices/system/cpu/cpu0/cpufreq/ondemand/sampling_rate)
|
/linux-4.1.27/Documentation/block/ |
D | switching-sched.txt | 30 a "cat /sys/block/DEV/queue/scheduler" - the list of valid names 33 # cat /sys/block/hda/queue/scheduler 36 # cat /sys/block/hda/queue/scheduler
|
/linux-4.1.27/tools/testing/ktest/examples/ |
D | snowball.conf | 45 CONSOLE = cat ${THIS_DIR}/snowball-cat
|
D | test.conf | 19 CONSOLE = stty -F /dev/ttyS0 115200 parodd; cat /dev/ttyS0
|
/linux-4.1.27/scripts/kconfig/ |
D | merge_config.sh | 98 cat $INITFILE > $TMP_FILE 119 cat $MERGE_FILE >> $TMP_FILE
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-firmware-sgi_uv | 19 cat /sys/firmware/sgi_uv/partition_id 27 cat /sys/firmware/sgi_uv/coherence_id
|
D | sysfs-firmware-acpi | 179 # cat ff_pwr_btn 182 # cat ff_pwr_btn 185 # cat ff_pwr_btn 188 # cat ff_pwr_btn 191 # cat ff_pwr_btn 198 # cat ff_pwr_btn 204 # cat ff_pwr_btn
|
D | sysfs-firmware-memmap | 66 start=$(cat $dir/start) 67 end=$(cat $dir/end) 68 type=$(cat $dir/type)
|
D | sysfs-class-pktcdvd | 66 cat /sys/class/pktcdvd/device_map 68 cat /sys/class/pktcdvd/pktcdvd0/stat/kb_written
|
D | debugfs-pktcdvd | 19 cat /sys/kernel/debug/pktcdvd/pktcdvd0/info
|
D | sysfs-firmware-sfi | 15 # cat $TABLENAME > $TABLENAME.bin
|
/linux-4.1.27/arch/cris/boot/rescue/ |
D | Makefile | 35 cat tr.bin tmp2423 >testrescue_tmp.bin 44 cat ktr.bin tmp2423 >kimagerescue_tmp.bin
|
/linux-4.1.27/drivers/net/wireless/libertas/ |
D | README | 77 echo "0xa123" > rdmac ; cat rdmac 78 echo "0xa123" > rdbbp ; cat rdbbp 79 echo "0xa123" > rdrf ; cat rdrf 100 cat sleepparams: reads the current sleepclock configuration 124 cat event 184 cat getscantable 236 cat hostsleep: reads the current hostsleep state
|
/linux-4.1.27/drivers/media/dvb-frontends/ |
D | lgs8gxx.c | 780 u8 agc_lvl[2], cat; in lgs8gxx_read_signal_agc() local 793 cat = 0; in lgs8gxx_read_signal_agc() 795 cat = 5; in lgs8gxx_read_signal_agc() 797 cat = 4; in lgs8gxx_read_signal_agc() 799 cat = 3; in lgs8gxx_read_signal_agc() 801 cat = 2; in lgs8gxx_read_signal_agc() 803 cat = 1; in lgs8gxx_read_signal_agc() 805 cat = 0; in lgs8gxx_read_signal_agc() 807 *signal = cat * 65535 / 5; in lgs8gxx_read_signal_agc()
|
/linux-4.1.27/drivers/net/fddi/skfp/ |
D | ess.c | 530 chg->cat.para.p_type = SMT_P001A ; in ess_send_response() 531 chg->cat.para.p_len = sizeof(struct smt_p_001a) - PARA_LEN ; in ess_send_response() 533 chg->cat.category = ((struct smt_p_001a *)p)->category ; in ess_send_response() 643 req->cat.para.p_type = SMT_P001A ; in ess_send_alc_req() 644 req->cat.para.p_len = sizeof(struct smt_p_001a) - PARA_LEN ; in ess_send_alc_req() 645 req->cat.category = smc->mib.fddiESSCategory ; in ess_send_alc_req()
|
/linux-4.1.27/Documentation/trace/ |
D | uprobetracer.txt | 85 cat /sys/kernel/debug/tracing/uprobe_events 95 # cat /proc/`pgrep zsh`/maps | grep /bin/zsh | grep r-xp 113 # cat uprobe_events 119 # cat events/uprobes/zfree_entry/format 147 # cat trace
|
D | mmiotrace.txt | 37 $ cat /sys/kernel/debug/tracing/trace_pipe > mydump.txt & 57 $ cat /sys/kernel/debug/tracing/trace_pipe > mydump.txt & 58 The 'cat' process should stay running (sleeping) in the background. 71 The 'cat' process exits. If it does not, kill it by issuing 'fg' command and 82 $ cat /sys/kernel/debug/tracing/buffer_size_kb
|
D | ftrace.txt | 325 # cat trace_clock 704 To see what is available, simply cat the file: 706 cat trace_options 924 # cat trace 1070 # cat trace 1220 # cat trace 1389 # cat trace 1455 # cat trace 1629 # cat trace 1674 # cat trace [all …]
|
D | events.txt | 128 # cat /sys/kernel/debug/tracing/events/sched/sched_wakeup/format 226 # cat filter 265 # cat sched_switch/filter 267 # cat sched_wakeup/filter 275 # cat sched_switch/filter 277 # cat sched_wakeup/filter 286 # cat sched_switch/filter 288 # cat sched_wakeup/filter
|
D | events-nmi.txt | 38 $ cat /sys/kernel/debug/tracing/trace_pipe
|
D | coresight.txt | 207 root:/sys/bus/coresight/devices# cat 20010000.etb/enable_sink 217 root:/sys/bus/coresight/devices# cat 2201c000.ptm/enable_source 219 root:/sys/bus/coresight/devices# cat 20010000.etb/status
|
D | kprobetrace.txt | 116 cat /sys/kernel/debug/tracing/events/kprobes/myprobe/format 156 cat /sys/kernel/debug/tracing/trace
|
/linux-4.1.27/tools/testing/selftests/ftrace/samples/ |
D | fail.tc | 3 cat non-exist-file
|
D | xfail.tc | 3 cat non-exist-file || exit_xfail
|
/linux-4.1.27/tools/hv/ |
D | hv_get_dns_info.sh | 13 cat /etc/resolv.conf 2>/dev/null | awk '/^nameserver/ { print $2 }'
|
/linux-4.1.27/tools/testing/selftests/ftrace/test.d/00basic/ |
D | basic2.tc | 4 for t in `cat available_tracers`; do
|
D | basic3.tc | 4 for c in `cat trace_clock | tr -d \[\]`; do
|
/linux-4.1.27/tools/testing/selftests/sysctl/ |
D | run_numerictests | 5 ORIG=$(cat "${TARGET}")
|
D | common_tests | 20 seen=$(cat "$1")
|
D | run_stringtests | 5 ORIG=$(cat "${TARGET}")
|
/linux-4.1.27/arch/score/boot/ |
D | Makefile | 13 @echo 'Kernel: $@ is ready' ' (#'`cat .version`')'
|
/linux-4.1.27/Documentation/firmware_class/ |
D | hotplug-script | 12 cat $HOTPLUG_FW_DIR/$FIRMWARE > /sys/$DEVPATH/data
|
D | README | 45 - hotplug: cat appropriate_firmware_image > \ 77 cat $HOTPLUG_FW_DIR/$FIRMWARE > /sys/$DEVPATH/data
|
/linux-4.1.27/arch/s390/boot/ |
D | install.sh | 37 cat $2 > $4/vmlinuz
|
/linux-4.1.27/arch/sparc/boot/ |
D | install.sh | 49 cat $2 > $4/vmlinuz
|
/linux-4.1.27/arch/c6x/boot/dts/ |
D | Makefile | 12 cmd_cp = cat $< >$@$2 || (rm -f $@ && echo false)
|
/linux-4.1.27/arch/microblaze/boot/dts/ |
D | Makefile | 15 cmd_cp = cat $< >$@$2 || (rm -f $@ && echo false)
|
/linux-4.1.27/arch/nios2/boot/ |
D | install.sh | 49 cat $2 > $4/vmlinuz
|
/linux-4.1.27/arch/m68k/ |
D | install.sh | 49 cat $2 > $4/vmlinuz
|
/linux-4.1.27/arch/arm64/boot/ |
D | install.sh | 40 cat $2 > $4/$base-$1
|
/linux-4.1.27/arch/ia64/ |
D | install.sh | 37 cat $2 > $4/vmlinuz
|
/linux-4.1.27/drivers/net/wireless/mwifiex/ |
D | README | 92 cat info 171 cat regrdwr 188 cat rdeeprom 203 cat hscfg 231 cat getlog 238 cat fw_dump
|
/linux-4.1.27/Documentation/leds/ |
D | leds-blinkm.txt | 37 $ cat blinkm-6-9-blue/brightness 63 $ cat *
|
/linux-4.1.27/Documentation/scsi/ |
D | hpsa.txt | 63 root@host:/sys/class/scsi_host/host4# cat firmware_revision 92 root@host:/sys/class/scsi_disk/4:0:0:0/device# cat unique_id 94 root@host:/sys/class/scsi_disk/4:0:0:0/device# cat lunid 96 root@host:/sys/class/scsi_disk/4:0:0:0/device# cat raid_level
|
/linux-4.1.27/arch/parisc/ |
D | install.sh | 59 cat $2 > $4/$base-$1
|
/linux-4.1.27/arch/blackfin/boot/ |
D | install.sh | 56 cat $2 > $4/uImage
|
D | Makefile | 38 cmd_mk_bin_xip = ( printf '%64s' | tr ' ' '\377' ; cat $< ) > $@
|
/linux-4.1.27/arch/arm/boot/ |
D | install.sh | 54 cat $2 > $4/$base-$1
|
/linux-4.1.27/tools/nfsd/ |
D | inject_fault.sh | 8 DEBUGFS=`cat /proc/mounts | grep debugfs`
|
/linux-4.1.27/arch/x86/boot/ |
D | install.sh | 49 cat $2 > $4/vmlinuz
|
D | Makefile | 72 @echo 'Kernel: $@ is ready' ' (#'`cat .version`')' 177 mkisofs -J -r -o $(obj)/image.iso -b isolinux.bin -c boot.cat \ 186 cat $(obj)/bzImage > $(INSTALL_PATH)/vmlinuz
|
/linux-4.1.27/Documentation/usb/ |
D | wusb-cbaf | 9 cat <<EOF 105 cat $dev/wusb_cdid
|
D | gadget-testing.txt | 46 On the host: cat > /dev/ttyACM<X> 47 On the device : cat /dev/ttyGS<Y> 51 On the device: cat > /dev/ttyGS<Y> 52 On the host: cat /dev/ttyACM<X> 559 On host: cat > /dev/ttyUSB<X> 560 On target: cat /dev/ttyGS<Y> 564 On target: cat > /dev/ttyGS<Y> 565 On host: cat /dev/ttyUSB<X> 696 # cat <<EOF > functions/uvc.usb0/streaming/uncompressed/u/360p/dwFrameInterval 761 # cat /dev/g_printer<number> [all …]
|
D | chipidea.txt | 12 cat /sys/kernel/debug/ci_hdrc.0/otg 13 cat /sys/kernel/debug/ci_hdrc.0/registers
|
D | usbmon.txt | 50 Run "cat /sys/kernel/debug/usb/devices", and find the T-line which corresponds 67 3. Start 'cat' 69 # cat /sys/kernel/debug/usb/usbmon/3u > /tmp/1.mon.out 73 # cat /sys/kernel/debug/usb/usbmon/0u > /tmp/1.mon.out 84 5. Kill cat
|
D | authorization.txt | 76 if [ $sum = $(cat /etc/lockdown/keysum) ]
|
D | gadget_serial.txt | 132 # ls -l /dev/ttyGS0 | cat 192 cat /proc/bus/usb/devices 224 cat /proc/bus/usb/devices
|
/linux-4.1.27/tools/testing/selftests/cpu-hotplug/ |
D | cpu-on-off-test.sh | 29 online_cpus=`cat $SYSFS/devices/system/cpu/online` 33 offline_cpus=`cat $SYSFS/devices/system/cpu/offline`
|
/linux-4.1.27/kernel/ |
D | Makefile | 110 …filechk_ikconfiggz = (echo "static const char kernel_config_data[] __used = MAGIC_START"; cat $< |… 139 ifneq ($(shell cat $(obj)/.x509.list),$(X509_CERTIFICATES)) 148 …cmd_x509certs = cat $(X509_CERTIFICATES) /dev/null >$@ $(foreach X509,$(X509_CERTIFICATES),; $(ke…
|
/linux-4.1.27/arch/xtensa/boot/lib/ |
D | Makefile | 19 cmd_copy_zlib = cat $< > $@
|
/linux-4.1.27/Documentation/cgroups/ |
D | freezer-subsystem.txt | 105 # cat /sys/fs/cgroup/freezer/0/freezer.state 111 # cat /sys/fs/cgroup/freezer/0/freezer.state 113 # cat /sys/fs/cgroup/freezer/0/freezer.state 119 # cat /sys/fs/cgroup/freezer/0/freezer.state
|
D | net_cls.txt | 27 cat /sys/fs/cgroup/net_cls/0/net_cls.classid
|
D | blkio-controller.txt | 53 cat /sys/fs/cgroup/blkio/test1/tasks 57 cat /sys/fs/cgroup/blkio/test2/tasks 161 # cat blkio.weight_device 167 # cat blkio.weight_device 174 # cat blkio.weight_device
|
/linux-4.1.27/Documentation/powerpc/ |
D | hvcs.txt | 166 For the above examples the following output is a result of cat'ing the 169 Pow5:/sys/class/tty/hvcs0/ # cat dev 172 Pow5:/sys/class/tty/hvcs1/ # cat dev 175 Pow5:/sys/class/tty/hvcs2/ # cat dev 178 Pow5:/sys/class/tty/hvcs3/ # cat dev 210 method (e.g. "cat", "dd", "echo"). The intent of this driver however, is 254 Pow5:/sys/bus/vio/drivers/hvcs/30000004 # cat index 281 because the standard Linux behavior when cat'ing or dd'ing data to a device 310 Pow5:/sys/bus/vio/drivers/hvcs/30000004 # cat vterm_state 315 Pow5:/sys/bus/vio/drivers/hvcs/30000004 # cat vterm_state [all …]
|
/linux-4.1.27/tools/testing/fault-injection/ |
D | failcmd.sh | 19 cat >&2 <<EOF 114 oom_kill_allocating_task_saved=`cat /proc/sys/vm/oom_kill_allocating_task`
|
/linux-4.1.27/Documentation/blockdev/ |
D | README.DAC960 | 348 cat /proc/rd/c0/user_command 423 gwynedd:/u/lnz# cat /proc/rd/c0/current_status 445 gwynedd:/u/lnz# cat /proc/rd/status 469 gwynedd:/u/lnz# cat /proc/rd/status 474 gwynedd:/u/lnz# cat /proc/rd/c0/current_status 497 gwynedd:/u/lnz# cat /proc/rd/c0/user_command 515 gwynedd:/u/lnz# cat /proc/rd/c0/current_status 532 gwynedd:/u/lnz# cat /proc/rd/c0/current_status 563 gwynedd:/u/lnz# cat /proc/rd/c0/current_status 579 gwynedd:/u/lnz# cat /proc/rd/status [all …]
|
D | zram.txt | 31 cat /sys/block/zram0/max_comp_streams 54 cat /sys/block/zram0/comp_algorithm
|
/linux-4.1.27/Documentation/filesystems/ |
D | afs.txt | 140 [root@andromeda ~]# cat /proc/fs/afs/cells 147 [root@andromeda ~]# cat /proc/fs/afs/cambridge.redhat.com/servers 150 [root@andromeda ~]# cat /proc/fs/afs/cambridge.redhat.com/vlservers 153 [root@andromeda ~]# cat /proc/fs/afs/cambridge.redhat.com/volumes 195 by cat'ing /proc/keys:
|
D | hpfs.txt | 56 'cat FOO', 'cat Foo', 'cat foo' or 'cat F*' but not 'cat f*'. Note, that you 275 when reading device (cat /dev/hda) while creating files on it, files
|
D | proc.txt | 156 >cat /proc/self/status 157 Name: cat 603 > cat /proc/interrupts 622 > cat /proc/interrupts 702 > cat /proc/irq/0/smp_affinity 708 > cat /proc/irq/0/smp_affinity_list 741 > cat /proc/buddyinfo 760 > cat /proc/pagetypeinfo 807 > cat /proc/meminfo 944 > cat /proc/vmallocinfo [all …]
|
D | ecryptfs.txt | 62 cat /mnt/crypt/hello.txt
|
/linux-4.1.27/arch/cris/boot/compressed/ |
D | Makefile | 24 cmd_image = cat $(obj)/decompress.bin $(obj)/piggy.gz > $@
|
/linux-4.1.27/Documentation/mic/mpssd/ |
D | mpss | 85 ipaddr=`cat $f/cmdline`
|
/linux-4.1.27/Documentation/ia64/ |
D | IRQ-redir.txt | 30 cat /proc/irq/IRQ#/smp_affinity 57 cat /proc/interrupts
|
/linux-4.1.27/drivers/net/fddi/skfp/h/ |
D | smt.h | 807 struct smt_p_001a cat ; /* Category - from the request */ member 824 struct smt_p_001a cat ; /* Category - from the request */ member 839 struct smt_p_001a cat ; /* Category - from the request */ member
|
/linux-4.1.27/arch/ia64/scripts/ |
D | toolchain-flags | 21 cat >&2 <<EOF
|
/linux-4.1.27/Documentation/networking/ |
D | batman-adv.txt | 56 # cat /sys/class/net/eth0/batman_adv/iface_status 85 # cat /sys/kernel/debug/batman_adv/bat0/originators 92 # cat /sys/class/net/bat0/mesh/orig_interval 149 # cat /sys/kernel/debug/batman_adv/bat0/log
|
/linux-4.1.27/Documentation/security/ |
D | keys-trusted-encrypted.txt | 97 $ keyctl add trusted kmk "load `cat kmk.blob`" @u 112 $ keyctl update 268728824 "update pcrinfo=`cat pcr.blob`" 148 $ keyctl add encrypted evm "load `cat evm.blob`" @u
|
/linux-4.1.27/Documentation/input/ |
D | yealink.txt | 133 cat ./line3 154 cat ./get_icons 186 cat ./line1
|
/linux-4.1.27/fs/proc/ |
D | Kconfig | 9 version of the program less: you need to use more or cat. 11 It's totally cool; for example, "cat /proc/interrupts" gives
|
/linux-4.1.27/include/net/ |
D | netlabel.h | 212 struct netlbl_lsm_catmap *cat; member 322 netlbl_catmap_free(secattr->attr.mls.cat); in netlbl_secattr_destroy()
|
D | cipso_ipv4.h | 109 } cat; member
|
/linux-4.1.27/Documentation/s390/ |
D | config3270.sh | 74 cat $SCRTMP >> $SCR
|
D | s390dbf.txt | 408 > cat /sys/kernel/debug/s390dbf/dasd/hex_ascii | sort +1 428 > cat /sys/kernel/debug/s390dbf/dasd/level 431 > cat /sys/kernel/debug/s390dbf/dasd/level 464 > cat /proc/sys/s390dbf/debug_stoppable 657 > cat /sys/kernel/debug/s390dbf/test/myview
|
/linux-4.1.27/Documentation/dmaengine/ |
D | dmatest.txt | 43 % cat /sys/module/dmatest/parameters/run 58 % cat /sys/module/dmatest/parameters/wait
|
/linux-4.1.27/Documentation/acpi/ |
D | method-customizing.txt | 27 just run "cat /sys/firmware/acpi/tables/DSDT > /tmp/dsdt.dat" 50 "cat /tmp/psr.aml > /sys/kernel/debug/acpi/custom_method"
|
/linux-4.1.27/Documentation/laptops/ |
D | laptop-mode.txt | 533 cat /etc/fstab | 593 cat /etc/mtab | while read DEV MP FST OPTS DUMP PASS ; do 620 CPU_MAXFREQ=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq` 653 cat /etc/mtab | while read DEV MP FST OPTS DUMP PASS ; do 681 …echo `cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq` > /sys/devices/system/cpu/cpu0/cp… 745 LM=`cat /proc/sys/vm/laptop_mode` 760 ACTION="`cat $BATT_INFO | grep charging | cut -c 26-`" 763 … PRESENT_RATE=`cat $BATT_INFO | grep "present rate:" | sed "s/.* \([0-9][0-9]* \).*/\1/" ` 764 … REMAINING=`cat $BATT_INFO | grep "remaining capacity:" | sed "s/.* \([0-9][0-9]* \).*/\1/" `
|
/linux-4.1.27/tools/testing/selftests/rcutorture/doc/ |
D | rcu-test-image.txt | 18 cat << '___EOF___' | sudo dd of=/mnt/etc/fstab
|
/linux-4.1.27/tools/perf/tests/ |
D | make | 208 rm -rf $@ $$TMP_DEST || (cat $@ ; false) 219 rm -rf $@ $$TMP_O $$TMP_DEST || (cat $@ ; false)
|
/linux-4.1.27/Documentation/frv/ |
D | features.txt | 260 # cat /proc/sys/frv/cache-mode 266 # cat /proc/sys/frv/cache-mode 298 # cat /proc/sys/frv/pin-cxnr 309 # cat /proc/sys/frv/pin-cxnr
|
D | clock.txt | 33 # cat /proc/cpuinfo
|
/linux-4.1.27/tools/testing/selftests/ftrace/ |
D | ftracetest | 117 cat $1 | tee -a $LOG_FILE
|
/linux-4.1.27/tools/build/ |
D | Makefile.feature | 121 FEATURE_DUMP_FILE := $(shell touch $(OUTPUT)FEATURE-DUMP; cat $(OUTPUT)FEATURE-DUMP)
|
D | Build.include | 64 cat $(depfile) > $(dot-target).cmd; \
|
/linux-4.1.27/Documentation/ABI/stable/ |
D | sysfs-bus-usb | 54 echo $((100 * `cat active_duration` / `cat connected_duration`))
|
/linux-4.1.27/tools/perf/Documentation/ |
D | Makefile | 302 $(OUTPUT)perfman.texi: $(MAN_XML) cat-texi.perl 306 $(PERL_PATH) cat-texi.perl $@ <$@++ >$@+ && \
|
D | android.txt | 73 # PERF_PAGER=cat
|
/linux-4.1.27/Documentation/RCU/ |
D | trace.txt | 27 of "cat rcu/rcutorture" looks as follows: 57 The output of "cat rcu/rcu_preempt/rcudata" looks as follows: 238 The output of "cat rcu/rcu_preempt/rcuexp" looks as follows: 277 The output of "cat rcu/rcu_preempt/rcugp" looks as follows: 305 The output of "cat rcu/rcu_preempt/rcuhier" looks as follows: 397 The output of "cat rcu/rcu_sched/rcu_pending" looks as follows: 442 The output of "cat rcu/rcuboost" looks as follows: 543 The output of "cat rcu/rcudata" is as follows:
|
/linux-4.1.27/Documentation/x86/ |
D | early-microcode.txt | 42 cat ucode.cpio /boot/initrd-3.5.0.img >/boot/initrd-3.5.0.ucode.img
|
D | mtrr.txt | 43 % cat /proc/mtrr 53 % cat /proc/mtrr 85 And the results: cat /proc/mtrr
|
D | earlyprintk.txt | 110 it up to use /dev/ttyUSB0 - or use a raw 'cat /dev/ttyUSBx' to 130 cat /dev/ttyUSB0
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | pnfs-block-server.txt | 27 cat > /sbin/nfsd-recall-failed << EOF
|
/linux-4.1.27/Documentation/arm/OMAP/ |
D | DSS | 244 w=`cat $dvi/timings | cut -d "," -f 2 | cut -d "/" -f 1` 245 h=`cat $dvi/timings | cut -d "," -f 3 | cut -d "/" -f 1` 263 w=`cat $tv/timings | cut -d "," -f 2 | cut -d "/" -f 1` 264 h=`cat $tv/timings | cut -d "," -f 3 | cut -d "/" -f 1`
|
/linux-4.1.27/Documentation/cris/ |
D | README | 147 17# cat cpuinfo 161 17# cat meminfo
|
/linux-4.1.27/Documentation/console/ |
D | console.txt | 56 cat /sys/class/vtconsole/vtcon0/name 64 cat /sys/class/vtconsole/vtcon1/name
|
/linux-4.1.27/Documentation/timers/ |
D | timer_stats.txt | 40 # cat /proc/timer_stats
|
/linux-4.1.27/drivers/net/ethernet/ibm/ehea/ |
D | ehea_phyp.c | 404 u64 ehea_h_modify_ehea_qp(const u64 adapter_handle, const u8 cat, in ehea_h_modify_ehea_qp() argument 415 (u64) cat, /* R5 */ in ehea_h_modify_ehea_qp()
|
/linux-4.1.27/Documentation/isdn/ |
D | README.diversion | 105 "cat /proc/modules" or "ls /proc/net/isdn/divert". The divert file is 112 You also may put a "cat /proc/net/isdn/divert" in the background with the
|
/linux-4.1.27/Documentation/fault-injection/ |
D | fault-injection.txt | 225 cat /sys/module/$module/sections/.text > /sys/kernel/debug/$FAILTYPE/require-start 226 cat /sys/module/$module/sections/.data > /sys/kernel/debug/$FAILTYPE/require-end
|
/linux-4.1.27/Documentation/video4linux/ |
D | README.ivtv | 104 cat /dev/video0 > my.mpg (you need to hit ctrl-c to exit) 115 cat my.mpg >/dev/video16
|
/linux-4.1.27/net/sctp/ |
D | Kconfig | 59 'cat /proc/net/sctp/sctp_dbg_objcnt'
|
/linux-4.1.27/Documentation/vm/ |
D | zsmalloc.txt | 39 # cat /sys/kernel/debug/zsmalloc/zram0/classes
|
/linux-4.1.27/Documentation/fb/ |
D | viafb.txt | 213 # cat /proc/viafb/supported_output_devices 223 # cat /proc/viafb/iga1/output_devices
|
D | fbcon.txt | 105 ('cat /proc/fb' should tell you what the fb numbers are) 296 if [ `cat /sys/class/vtconsole/vtcon$i/name | grep -c "frame buffer"` \ 314 if [ `cat /sys/class/vtconsole/vtcon$i/name | grep -c "frame buffer"` \
|