Home
last modified time | relevance | path

Searched refs:print (Results 1 – 25 of 882) sorted by relevance

12345678910>>...36

/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/openbox/files/
H A D0001-openbox-xdg-autostart-convert-to-python3.patch27 - print
28 - print >>sys.stderr, "ERROR:", ME, "requires PyXDG to be installed"
29 - print
30 + print()
31 + print("ERROR:", ME, "requires PyXDG to be installed", file=sys.stderr)
32 + print()
40 - print "Invalid .desktop file: " + path
41 + print("Invalid .desktop file: " + path)
49 - print "\t ", str
50 + print("\t ", str)
[all …]
/OK3568_Linux_fs/kernel/kernel/time/
H A Dtimeconst.bc44 print "/* Automatically generated by kernel/time/timeconst.bc */\n"
45 print "/* Time conversion constants for HZ == ", hz, " */\n"
46 print "\n"
48 print "#ifndef KERNEL_TIMECONST_H\n"
49 print "#define KERNEL_TIMECONST_H\n\n"
51 print "#include <linux/param.h>\n"
52 print "#include <linux/types.h>\n\n"
54 print "#if HZ != ", hz, "\n"
55 print "#error \qinclude/generated/timeconst.h has the wrong HZ value!\q\n"
56 print "#endif\n\n"
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-perl/recipes-perl/libauthen/libauthen-radius-perl/
H A Dtest.pl-adjust-for-ptest.patch25 -BEGIN {print "1..5\n";}
26 -END {print "not ok 1\n" unless $loaded;}
27 +BEGIN {print "Start testing for libauthen-radius-perl\n";}
28 +END {print "\nFAIL: test1\n" unless $loaded;}
31 -print "ok 1\n";
32 +print "\nPASS: test1\n";
36 @@ -19,26 +19,31 @@ print "ok 1\n";
45 print "Make sure this machine is in your Radius clients file!\n";
46 -print "Enter hostname[:port] of your Radius server: "; chomp ($host = <STDIN>);
47 -print "Enter shared-secret of your Radius server: "; chomp ($secret = <STDIN>);
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/size/
H A Dget_size.c35 static int print(const char *s) in print() function
65 return print(num_to_str(num, num_buf, sizeof(num_buf))); in print_num()
73 print(s); in print_k_value()
79 print("\n"); in print_k_value()
91 print("TAP version 13\n"); in _start()
92 print("# Testing system size.\n"); in _start()
96 print("not ok 1"); in _start()
97 print(test_name); in _start()
98 print(" ---\n reason: \"could not get sysinfo\"\n ...\n"); in _start()
101 print("ok 1"); in _start()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/libteam/libteam/
H A D0001-team_basic_test.py-switch-to-python3.patch29 - print "Usage: team_basic_test.py [OPTION...]"
30 - print ""
31 - print " -h, --help print this message"
32 - print " -c, --loop-count=NUMBER number of loops (default 1)"
33 - print " -p, --port=NETDEV port device (can be defined multiple times)"
34 + print("Usage: team_basic_test.py [OPTION...]")
35 + print("")
36 + print(" -h, --help print this message")
37 + print(" -c, --loop-count=NUMBER number of loops (default 1)")
38 + print(" -p, --port=NETDEV port device (can be defined multiple times)")
[all …]
/OK3568_Linux_fs/buildroot/package/fakeroot/
H A D0001-fix-prototype-generation.patch28 + print " {(void(*))&next_" name ", \"" name "\"}," > structfile;
29 + print "extern " ret " (*next_" name ")" openat_extra ";" > headerfile;
30 + print ret " (*next_" name ")" openat_extra "=tmp_" name ";"> deffile;
32 + print ret " tmp_" name, openat_extra "{" > tmpffile;
33 + print " mode_t mode = 0;" > tmpffile;
34 + print " if (flags & O_CREAT) {" > tmpffile;
35 + print " va_list args;" > tmpffile;
36 + print " va_start(args, flags);" > tmpffile;
37 + print " mode = va_arg(args, int);" > tmpffile;
38 + print " va_end(args);" > tmpffile;
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/manual/
H A Dabat.patch10 - XPID=$( ps ax | awk '{print $1, $5}' | grep glxgears | awk '{print $1}')
11 + XPID=$( ps | awk '{print $1, $5}' | grep glxgears | awk '{print $1}')
23 -XPID=$( ps ax | awk '{print $1, $5}' | egrep "X$|Xorg$" | awk '{print $1}')
24 +XPID=$( ps | awk '{print $1, $6}' | egrep "X$|Xorg$" | awk '{print $1}')
36 -PXID=$(ps ax |awk '{print $1,$5}' |egrep "Xorg$|X$" |grep -v grep | awk '{print $1}')
37 +PXID=$(ps |awk '{print $1,$6}' |egrep "Xorg$|X$" |grep -v grep | awk '{print $1}')
59 - XPID=$( ps ax | awk '{print $1, $5}' | egrep "X$|Xorg$" |grep -v grep| awk '{print $1}')
60 + XPID=$( ps | awk '{print $1, $6}' | egrep "X$|Xorg$" |grep -v grep| awk '{print $1}')
/OK3568_Linux_fs/kernel/arch/alpha/kernel/
H A Derr_titan.c27 titan_parse_c_misc(u64 c_misc, int print) in titan_parse_c_misc() argument
43 if (!print) in titan_parse_c_misc()
74 titan_parse_p_serror(int which, u64 serror, int print) in titan_parse_p_serror() argument
112 if (!print) in titan_parse_p_serror()
141 titan_parse_p_perror(int which, int port, u64 perror, int print) in titan_parse_p_perror() argument
229 if (!print) in titan_parse_p_perror()
275 titan_parse_p_agperror(int which, u64 agperror, int print) in titan_parse_p_agperror() argument
318 if (!print) in titan_parse_p_agperror()
359 u64 aperror, u64 agperror, int print) in titan_parse_p_chip() argument
362 status |= titan_parse_p_serror(which, serror, print); in titan_parse_p_chip()
[all …]
H A Derr_ev6.c23 ev6_parse_ibox(u64 i_stat, int print) in ev6_parse_ibox() argument
33 if (!print) in ev6_parse_ibox()
43 ev6_parse_mbox(u64 mm_stat, u64 d_stat, u64 c_stat, int print) in ev6_parse_mbox() argument
64 if (!print) in ev6_parse_mbox()
91 u64 c_stat, u64 c_sts, int print) in ev6_parse_cbox() argument
133 if (!print) in ev6_parse_cbox()
187 ev6_process_logout_frame(struct el_common *mchk_header, int print) in ev6_process_logout_frame() argument
193 status |= ev6_parse_ibox(ev6mchk->I_STAT, print); in ev6_process_logout_frame()
195 ev6mchk->C_STAT, print); in ev6_process_logout_frame()
198 ev6mchk->C_STS, print); in ev6_process_logout_frame()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-perl/recipes-perl/libxml/libxml-libxml-perl/
H A Ddisable-libxml2-check.patch22 -print "Checking for ability to link against xml2...";
24 - print "yes\n";
27 - print "no\n";
28 - print "Checking for ability to link against libxml2...";
30 - print "yes\n";
33 - print STDERR <<"DEATH";
48 +#print "Checking for ability to link against xml2...";
50 +# print "yes\n";
53 +# print "no\n";
54 +# print "Checking for ability to link against libxml2...";
[all …]
/OK3568_Linux_fs/kernel/net/mac80211/
H A Ddebug.h86 void __sdata_dbg(bool print, const char *fmt, ...) __printf(2, 3);
88 void __wiphy_dbg(struct wiphy *wiphy, bool print, const char *fmt, ...)
93 #define _sdata_dbg(print, sdata, fmt, ...) \ argument
94 __sdata_dbg(print, "%s: " fmt, (sdata)->name, ##__VA_ARGS__)
97 #define _wiphy_dbg(print, wiphy, fmt, ...) \ argument
98 __wiphy_dbg(wiphy, print, fmt, ##__VA_ARGS__)
106 #define _sdata_dbg(print, sdata, fmt, ...) \ argument
108 if (print) \
119 #define _wiphy_dbg(print, wiphy, fmt, ...) \ argument
121 if (print) \
/OK3568_Linux_fs/kernel/kernel/trace/
H A Dtrace_export.c32 #define FTRACE_ENTRY_REG(name, struct_name, id, tstruct, print, regfn) \ argument
33 FTRACE_ENTRY(name, struct_name, id, PARAMS(tstruct), PARAMS(print))
67 #define FTRACE_ENTRY(name, struct_name, id, tstruct, print) \ argument
76 printk(print); \
80 #define FTRACE_ENTRY_DUP(name, struct_name, id, tstruct, print) \ argument
81 FTRACE_ENTRY(name, struct_name, id, PARAMS(tstruct), PARAMS(print))
126 #define FTRACE_ENTRY(name, struct_name, id, tstruct, print) \ argument
161 #define FTRACE_ENTRY_REG(call, struct_name, etype, tstruct, print, regfn) \ argument
175 .print_fmt = print, \
182 #define FTRACE_ENTRY(call, struct_name, etype, tstruct, print) \ argument
[all …]
/OK3568_Linux_fs/kernel/include/trace/
H A Dtrace_events.h74 #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \ argument
80 PARAMS(print)); \
112 #define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \ argument
131 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ argument
137 assign, print, reg, unreg) \ argument
139 PARAMS(tstruct), PARAMS(assign), PARAMS(print)) \
143 assign, print, reg, unreg) \ argument
145 PARAMS(tstruct), PARAMS(assign), PARAMS(print)) \
204 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument
213 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) argument
[all …]
H A Ddefine_trace.h27 #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \ argument
31 #define TRACE_EVENT_CONDITION(name, proto, args, cond, tstruct, assign, print) \ argument
37 PARAMS(print))
41 assign, print, reg, unreg) \ argument
46 assign, print, reg, unreg) \ argument
50 #define TRACE_EVENT_NOP(name, proto, args, struct, assign, print) argument
64 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ argument
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/sequence/io/detail/
H A Dout.hpp31 print(OS& os, char const* delim, mpl::false_ = mpl::false_()) in print() function
34 manip.print(delim); in print()
39 print(OS&, char const*, mpl::true_) in print() function
63 delimiter_out<tuple_delimiter_tag>::print(os, " ", is_last); in call()
80 delimiter_out<tuple_open_tag>::print(os, "("); in print_sequence()
82 delimiter_out<tuple_close_tag>::print(os, ")"); in print_sequence()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Djson.h80 virtual void print (pretty_printer *pp) const = 0;
94 void print (pretty_printer *pp) const FINAL OVERRIDE;
113 void print (pretty_printer *pp) const FINAL OVERRIDE;
129 void print (pretty_printer *pp) const FINAL OVERRIDE;
145 void print (pretty_printer *pp) const FINAL OVERRIDE;
163 void print (pretty_printer *pp) const FINAL OVERRIDE;
183 void print (pretty_printer *pp) const FINAL OVERRIDE;
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Djson.h80 virtual void print (pretty_printer *pp) const = 0;
94 void print (pretty_printer *pp) const FINAL OVERRIDE;
113 void print (pretty_printer *pp) const FINAL OVERRIDE;
129 void print (pretty_printer *pp) const FINAL OVERRIDE;
145 void print (pretty_printer *pp) const FINAL OVERRIDE;
163 void print (pretty_printer *pp) const FINAL OVERRIDE;
183 void print (pretty_printer *pp) const FINAL OVERRIDE;
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/wireshark/files/
H A D0001-wireshark-src-improve-reproducibility.patch35 print("/*")
36 print(" * Do not modify this file. Changes will be overwritten.")
37 - print(" * Generated automatically from %s" % (sys.argv[0]))
38 + print(" * Generated automatically from %s" % (os.path.basename(sys.argv[0])))
39 print(" */\n")
41 print("""
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-connectivity/ufw/ufw/
H A D0002-add-an-option-to-specify-iptables-location.patch47 - print("Found '%s'" % iptables_exe)
56 - print("ERROR: could not find required binary 'iptables'", file=sys.stderr)
61 - print("ERROR: could not find required binary '%s'" % (e), file=sys.stderr)
66 + print("INFO: iptables manually set: '%s'" % (iptables_exe))
78 + print("Found '%s'" % iptables_exe)
86 + print("ERROR: could not find required binary 'iptables'", file=sys.stderr)
94 -print("Found '%s' version '%s'" % (iptables_exe, version))
96 - print("WARN: version '%s' has limited IPv6 support. See README for details." % (version), file…
99 + print("ERROR: could not find required binary '%s'" % (e), file=sys.stderr)
107 + print("Found '%s' version '%s'" % (iptables_exe, version))
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-initramfs/recipes-devtools/klibc/files/
H A Dcross-clang.patch9 -KLIBCCPPFLAGS += -I$(shell $(KLIBCCC) $(KLIBCCFLAGS) --print-file-name=include)
12 + -I$(shell $(KLIBCCC) $(KLIBCCFLAGS) --print-file-name=include)
20 …$(shell $(KLIBCCC) $(KLIBCCFLAGS) $(if $(filter gcc,$(cc-name)),--print-libgcc,--print-libgcc-file…
21 +KLIBCLIBGCC_DEF := $(shell $(KLIBCCC) $(KLIBCCFLAGS) --print-libgcc-file-name)
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-security/nmap/files/
H A D0001-Make-ndiff-support-python3.patch477 - print >> f
478 + print(file=f)
480 - print >> f, u"-%s:" % title
481 + print("-%s:" % title, file=f)
483 - print >> f, u"+%s:" % title
484 + print("+%s:" % title, file=f)
486 - print >> f, u" %s:" % title
487 - print >> f, table
488 + print(" %s:" % title, file=f)
489 + print(table, file=f)
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/mcelog/mce-test/
H A D0001-gcov_merge.py-scov_merge.py-switch-to-python3.patch30 - print str
31 + print(str)
53 - print 'Usage: %s <gcov graph files>' % (sys.argv[0])
54 + print('Usage: %s <gcov graph files>' % (sys.argv[0]))
76 - print str
77 + print(str)
99 - print 'Usage: %s <severities coverage files>' % (sys.argv[0])
100 + print('Usage: %s <severities coverage files>' % (sys.argv[0]))
/OK3568_Linux_fs/buildroot/package/benejson/
H A D0002-Use-print-as-a-function-for-Py3-compatibility.patch1 Use print as a function in SConstruct build file for Py3 compatibility.
19 - print "Did not find stpcpy(), using bnj local version"
20 + print("Did not find stpcpy(), using bnj local version")
24 - print "Did not find stpncpy(), using bnj local version"
25 + print("Did not find stpncpy(), using bnj local version")
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/debootstrap/debootstrap/
H A D0001-do-not-hardcode-the-full-path-of-dpkg.patch25 dpkg --print-architecture >/dev/null 2>&1; then
26 - HOST_ARCH=$(/usr/bin/dpkg --print-architecture)
27 + HOST_ARCH=$(dpkg --print-architecture)
29 udpkg --print-architecture >/dev/null 2>&1; then
30 HOST_ARCH=$(/usr/bin/udpkg --print-architecture)
/OK3568_Linux_fs/buildroot/package/imx-mkimage/
H A D0001-Add-support-for-overriding-BL32-and-BL33-not-only-BL.patch22 - ls -lct bl31.bin | awk '{print $5}' >&2
24 + ls -lct $BL31 | awk '{print $5}' >&2
36 - ls -lct tee.bin | awk '{print $5}' >&2
38 + ls -lct $BL32 | awk '{print $5}' >&2
52 - ls -lct u-boot-nodtb.bin | awk '{print $5}' >&2
54 + ls -lct $BL33 | awk '{print $5}' >&2

12345678910>>...36