/linux/tools/scripts/ |
H A D | utilities.mak | 8 # nl-escape 10 # Usage: escape = $(call nl-escape[,escape]) 16 nl-escape = $(if $(1),$(1),m822df3020w6a44id34bt574ctac44eb9f4n) 18 # escape-nl 20 # Usage: escaped-text = $(call escape-nl,text[,escape]) 32 escape-nl = $(subst $(newline),$(call nl-escape,$(2)),$(1)) 36 # Usage: text = $(call unescape-nl,escaped-text[,escape]) 38 # See escape-nl. 40 unescape-nl = $(subst $(call nl-escape,$(2)),$(newline),$(1)) 42 # shell-escape-nl [all …]
|
/linux/drivers/input/joystick/ |
H A D | spaceball.c | 54 int escape; member 145 spaceball->escape = 0; in spaceball_interrupt() 148 if (!spaceball->escape) { in spaceball_interrupt() 149 spaceball->escape = 1; in spaceball_interrupt() 152 spaceball->escape = 0; in spaceball_interrupt() 157 if (spaceball->escape) { in spaceball_interrupt() 158 spaceball->escape = 0; in spaceball_interrupt() 163 if (spaceball->escape) in spaceball_interrupt() 164 spaceball->escape = 0; in spaceball_interrupt()
|
/linux/tools/testing/selftests/tc-testing/ |
H A D | TdcResults.py | 111 from xml.sax.saxutils import escape 115 xunit += '\t\t<testcase classname=\"{}\" '.format(escape(t.test_id)) 116 xunit += 'name=\"{}\">\n'.format(escape(t.test_name)) 122 xunit += '\t{}\n'.format(escape(step)) 123 xunit += 'FAILURE: {}\n'.format(escape(t.failmsg)) 126 xunit += '\t\t\t<error>\n{}\n'.format(escape(t.errormsg))
|
/linux/tools/include/nolibc/ |
H A D | stdio.h | 218 char escape, lpref, c; in vfprintf() local 225 written = ofs = escape = lpref = 0; in vfprintf() 229 if (escape) { in vfprintf() 231 escape = 0; in vfprintf() 289 escape = 1; in vfprintf() 299 escape = 1; in vfprintf()
|
/linux/drivers/input/serio/ |
H A D | ps2mult.c | 42 bool escape; member 243 if (psm->escape) { in ps2mult_interrupt() 244 psm->escape = false; in ps2mult_interrupt() 254 psm->escape = true; in ps2mult_interrupt()
|
/linux/drivers/gpu/drm/vmwgfx/ |
H A D | vmwgfx_overlay.c | 62 struct vmw_escape_header escape; member 77 fill_escape(&cmd->escape, sizeof(cmd->flush)); in fill_flush() 100 struct vmw_escape_header escape; in vmw_overlay_send_put() member 128 fill_escape(&cmds->escape, sizeof(*items) * (num_items + 1)); in vmw_overlay_send_put() 182 struct vmw_escape_header escape; in vmw_overlay_send_stop() member 201 fill_escape(&cmds->escape, sizeof(cmds->body)); in vmw_overlay_send_stop()
|
/linux/tools/arch/x86/tools/ |
H A D | gen-insn-attr-x86.awk | 21 eid = -1 # escape id 135 # escape opcode table 139 eid = escape[ref] 146 # AVX/escape opcode table 274 if ("escape" == $2) { 280 if (ref in escape) 281 semantic_error("Redefine escape (" ref ")") 282 escape[ref] = geid 284 table[idx] = "INAT_MAKE_ESCAPE(" escape[ref] ")" 330 # check coprocessor escape [all...] |
/linux/scripts/kconfig/tests/preprocess/escape/ |
H A D | Kconfig | 16 # No need to escape '$' itself. 22 # You need a trick to escape '$' followed by '('
|
/linux/fs/jbd2/ |
H A D | commit.c | 356 int escape; in jbd2_journal_commit_transaction() local 663 escape = jbd2_journal_write_metadata_buffer(commit_transaction, in jbd2_journal_commit_transaction() 665 if (escape < 0) { in jbd2_journal_commit_transaction() 666 jbd2_journal_abort(journal, escape); in jbd2_journal_commit_transaction() 675 if (escape) in jbd2_journal_commit_transaction()
|
/linux/Documentation/admin-guide/ |
H A D | lcd-panel-cgram.rst | 6 characters 0 to 7. The escape code to define a new character is
|
H A D | vga-softcursor.rst | 15 The cursor appearance is controlled by a ``<ESC>[?1;2;3c`` escape sequence
|
H A D | binfmt-misc.rst | 37 must escape any NUL bytes; parsing halts at the first one. In a shell 47 escape any NUL bytes; parsing halts at the first one. Ignored when using
|
/linux/fs/isofs/ |
H A D | inode.c | 652 if (sec->escape[0] == 0x25 && sec->escape[1] == 0x2f) { in isofs_fill_super() 654 if (sec->escape[2] == 0x40) in isofs_fill_super() 656 else if (sec->escape[2] == 0x43) in isofs_fill_super() 658 else if (sec->escape[2] == 0x45) in isofs_fill_super()
|
/linux/Documentation/devicetree/bindings/media/ |
H A D | cdns,csi2tx.txt | 13 * esc_clk: escape mode clock
|
/linux/arch/arm/boot/dts/st/ |
H A D | ste-nomadik-s8815.dts | 160 /* User key mapped in as "escape" */
|
/linux/include/uapi/linux/ |
H A D | iso_fs.h | 75 __u8 escape [ISODCL ( 89, 120)]; /* 856 */ member
|
/linux/Documentation/admin-guide/sysctl/ |
H A D | user.rst | 34 user namespace does not allow a user to escape their current limits.
|
/linux/arch/arm/boot/dts/broadcom/ |
H A D | bcm283x.dtsi | 369 clock-names = "phy", "escape", "pixel"; 448 clock-names = "phy", "escape", "pixel";
|
/linux/fs/proc/ |
H A D | internal.h | 183 bool escape);
|
H A D | array.c | 99 void proc_task_name(struct seq_file *m, struct task_struct *p, bool escape) in proc_task_name() argument 114 if (escape) in proc_task_name()
|
/linux/tools/arch/x86/lib/ |
H A D | x86-opcode-map.txt | 13 # opcode: escape # escaped-name 61 0f: escape # 2-byte escape 329 Referrer: 2-byte escape 402 38: escape # 3-byte escape 1 404 3a: escape # 3-byte escape 2 619 Referrer: 3-byte escape 1 852 Referrer: 3-byte escape [all...] |
/linux/Documentation/ |
H A D | Makefile | 29 LATEXOPTS = -interaction=batchmode -no-shell-escape
|
/linux/tools/perf/Documentation/ |
H A D | perf-probe.txt | 188 …';' are treated as a special character. You can use a backslash ('\') to escape the special charac… 289 Add a probe on specific versioned symbol by backslash escape 293 Add a probe in a source file using special characters by backslash escape
|
/linux/Documentation/userspace-api/media/v4l/ |
H A D | pixfmt-srggb8-pisp-comp.rst | 62 Quantization mode 3 has a "7.5-bit" escape, used when none of the above
|
/linux/include/pcmcia/ |
H A D | cistpl.h | 255 u_char escape; member
|