Searched refs:null (Results 1 - 200 of 1039) sorted by relevance

123456

/linux-4.1.27/arch/c6x/include/asm/
H A Dmutex.h4 #include <asm-generic/mutex-null.h>
/linux-4.1.27/drivers/vhost/
H A Dtest.h4 /* Start a given test on the virtio null device. 0 stops all tests. */
/linux-4.1.27/arch/alpha/lib/
H A Dstrcpy.S5 * Copy a null-terminated string from SRC to DST. Return a pointer
6 * to the null-terminator in the source.
H A Dstrncat.S5 * Append no more than COUNT characters from the null-terminated string SRC
6 * to the null-terminated string DST. Always null-terminate the new DST.
57 /* Worry about the null termination. */
59 zapnot $1, $27, $2 # was last byte a null?
H A Dstrrchr.S6 * within a null-terminated string, or null if it is not found.
38 andnot t1, t4, t1 # .. e1 : clear garbage from null test
51 beq t1, $loop # .. e1 : if we havnt seen a null, loop
55 negq t1, t4 # e0 : isolate first null byte match
58 or t4, t5, t4 # e1 : ... and including the null
60 and t3, t4, t3 # e0 : mask out char matches after null
H A Dev67-strncat.S5 * Append no more than COUNT characters from the null-terminated string SRC
6 * to the null-terminated string DST. Always null-terminate the new DST.
59 /* Worry about the null termination. */
61 zapnot $1, $27, $2 # U : was last byte a null?
H A Dstrcat.S5 * Append a null-terminated string from SRC to DST.
H A Dev67-strrchr.S60 andnot t1, t4, t1 # E : clear garbage from null test
78 beq t1, $loop # U : if we havnt seen a null, loop
83 negq t1, t4 # E : isolate first null byte match
86 or t4, t5, t4 # E : ... and including the null
88 and t3, t4, t3 # E : mask out char matches after null
H A Dev6-stxcpy.S5 * Copy a null-terminated string from SRC to DST.
63 cmpbge zero, t2, t8 # E : bits set iff null found
69 t1 == a source word not containing a null. */
85 t1 == the source word containing the null
99 zapnot t1, t6, t1 # U : clear src bytes >= null (stall)
102 zap t0, t8, t0 # E : clear dst bytes <= null
198 We further know that t2 does not contain a null terminator. */
228 cmpbge zero, t1, t8 # E : is the null in this first bit? (stall)
232 stq_u t1, 0(a0) # L : the null was in the high-order bits
240 t8 == cmpbge mask that found the null. */
250 zapnot t1, t6, t1 # U : kill source bytes >= null (stall)
252 zap t0, t8, t0 # U : kill dest bytes <= null (2 cycle data stall)
307 srl t12, t5, t12 # U : adjust final null return value
H A Dstxcpy.S5 * Copy a null-terminated string from SRC to DST.
51 cmpbge zero, t2, t8 # .. e1 : bits set iff null found
57 t1 == a source word not containing a null. */
69 t1 == the source word containing the null
84 zapnot t1, t6, t1 # e0 : clear src bytes >= null
86 zap t0, t8, t0 # e0 : clear dst bytes <= null
174 We further know that t2 does not contain a null terminator. */
201 cmpbge zero, t1, t8 # e0 : is the null in this first bit?
205 stq_u t1, 0(a0) # e0 : the null was in the high-order bits
213 t8 == cmpbge mask that found the null. */
224 zapnot t1, t6, t1 # .. e1 : kill source bytes >= null
225 zap t0, t8, t0 # e0 : kill dest bytes <= null
277 srl t12, t5, t12 # e0 : adjust final null return value
H A Dev6-stxncpy.S5 * Copy no more than COUNT bytes of the null-terminated string from
71 cmpbge zero, t2, t8 # E : bits set iff null found
81 t0 == a source word not containing a null. */
108 t0 == the source word containing the null
124 zapnot t0, t8, t0 # U : clear src bytes > null (stall)
126 zap t1, t8, t1 # .. e1 : clear dst bytes <= null
245 We further know that t2 does not contain a null terminator. */
276 cmpbge zero, t0, t8 # E : is the null in this first bit? (stall)
279 stq_u t0, 0(a0) # L : the null was in the high-order bits
293 t8 == cmpbge mask that found the null. */
303 zapnot t0, t8, t0 # U : kill source bytes > null
305 zap t1, t8, t1 # U : kill dest bytes <= null
H A Dstxncpy.S5 * Copy no more than COUNT bytes of the null-terminated string from
59 cmpbge zero, t2, t8 # .. e1 : bits set iff null found
65 t0 == a source word not containing a null. */
81 t0 == the source word containing the null
99 zapnot t0, t8, t0 # e0 : clear src bytes > null
100 zap t1, t8, t1 # .. e1 : clear dst bytes <= null
203 We further know that t2 does not contain a null terminator. */
232 cmpbge zero, t0, t8 # e0 : is the null in this first bit?
235 stq_u t0, 0(a0) # e0 : the null was in the high-order bits
249 t8 == cmpbge mask that found the null. */
260 zapnot t0, t8, t0 # .. e1 : kill source bytes > null
261 zap t1, t8, t1 # e0 : kill dest bytes <= null
H A Dstrchr.S5 * Return the address of a given character within a null-terminated
6 * string, or null if it is not found.
H A Dev67-strchr.S5 * Return the address of a given character within a null-terminated
6 * string, or null if it is not found.
H A Dev67-strcat.S5 * Append a null-terminated string from SRC to DST.
H A Dstrncpy.S5 * Copy no more than COUNT bytes of the null-terminated string from
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/
H A Dnv04.h9 dma_addr_t null; member in struct:nv04_mmu_priv
H A Dnv44.c39 nv44_vm_fill(struct nvkm_gpuobj *pgt, dma_addr_t null, nv44_vm_fill() argument
51 u32 addr = list ? (*list++ >> 12) : (null >> 12); nv44_vm_fill()
95 nv44_vm_fill(pgt, priv->null, list, pte, part); nv44_vm_map_sg()
112 nv44_vm_fill(pgt, priv->null, list, pte, cnt); nv44_vm_map_sg()
123 nv44_vm_fill(pgt, priv->null, NULL, pte, part); nv44_vm_unmap()
137 nv44_vm_fill(pgt, priv->null, NULL, pte, cnt); nv44_vm_unmap()
186 priv->nullp = pci_alloc_consistent(device->pdev, 16 * 1024, &priv->null); nv44_mmu_ctor()
228 nv_wr32(priv, 0x100818, priv->null); nv44_mmu_init()
H A Dnv04.c137 priv->nullp, priv->null); nv04_mmu_dtor()
/linux-4.1.27/Documentation/EDID/
H A DMakefile23 @dos2unix $@ 2>/dev/null
/linux-4.1.27/security/selinux/include/
H A Dinitial_sid_to_string.h4 "null",
/linux-4.1.27/scripts/kconfig/lxdialog/
H A Dcheck-lxdialog.sh7 pkg-config --libs ncursesw 2>/dev/null && exit
8 pkg-config --libs ncurses 2>/dev/null && exit
24 if pkg-config --cflags ncursesw 2>/dev/null; then
26 elif pkg-config --cflags ncurses 2>/dev/null; then
48 $cc -x c - -o $tmp 2>/dev/null <<'EOF'
/linux-4.1.27/tools/thermal/tmon/
H A DMakefile21 TMON_LIBS += $(shell pkg-config --libs $(STATIC) panelw ncursesw 2> /dev/null || \
22 pkg-config --libs $(STATIC) panel ncurses 2> /dev/null || \
32 sudo valgrind -v --track-origins=yes --tool=memcheck --leak-check=yes --show-reachable=yes --num-callers=20 --track-fds=yes ./$(TARGET) 1> /dev/null
/linux-4.1.27/security/apparmor/include/
H A Dapparmor.h87 * aa_strneq - compare null terminated @str to a non null terminated substring
88 * @str: a null terminated string
89 * @sub: a substring, not necessarily null terminated
100 * aa_dfa_null_transition - step to next state after null character
104 * aa_dfa_null_transition transitions to the next state after a null
111 /* the null transition only needs the string's null terminator byte */ aa_dfa_null_transition()
H A Dpolicy.h64 PFLAG_NULL = 4, /* profile is null learning profile */
69 PFLAG_OLD_NULL_TRANS = 0x100, /* use // as the null transition */
96 * @count: current count of profiles (includes null profiles)
112 * @uniq_null: uniq value used for null learning profiles
/linux-4.1.27/tools/build/tests/
H A Drun.sh12 make -C ex V=1 clean > /dev/null 2>&1
34 make -C ex V=1 clean > /dev/null 2>&1
/linux-4.1.27/net/ceph/
H A Dauth_none.h8 * null security mode.
H A Dsnapshot.c40 * Returns a null pointer if an error occurs.
/linux-4.1.27/tools/perf/tests/
H A Dpython-use.c17 PYTHONPATH, PYTHON, verbose ? "" : "2> /dev/null") < 0) test__python_use()
/linux-4.1.27/tools/testing/selftests/breakpoints/
H A DMakefile2 uname_M := $(shell uname -m 2>/dev/null || echo not)
/linux-4.1.27/tools/testing/selftests/ipc/
H A DMakefile1 uname_M := $(shell uname -m 2>/dev/null || echo not)
/linux-4.1.27/drivers/staging/iio/accel/
H A Dadis16209.h24 /* Calibration, x-axis acceleration offset null */
26 /* Calibration, y-axis acceleration offset null */
28 /* Calibration, x-axis inclination offset null */
30 /* Calibration, y-axis inclination offset null */
32 /* Calibration, vertical rotation offset null */
H A Dadis16204.h14 #define ADIS16204_XACCL_NULL 0x10 /* Calibration, x-axis acceleration offset null */
15 #define ADIS16204_YACCL_NULL 0x12 /* Calibration, y-axis acceleration offset null */
H A Dadis16203.h12 #define ADIS16203_INCL_NULL 0x18 /* Incline null calibration */
/linux-4.1.27/security/tomoyo/
H A DMakefile6 $(objtree)/scripts/basic/bin2c <$(firstword $(wildcard $(obj)/policy/$(1).conf $(srctree)/$(src)/policy/$(1).conf.default) /dev/null); \
/linux-4.1.27/include/asm-generic/
H A Dmutex-null.h2 * include/asm-generic/mutex-null.h
H A Dpgtable.h610 * into a null pmd and the transhuge page fault can convert a null pmd
613 * stable and stops changing under us only if it's not null and not a
640 * the low part of the pmd is found null, the high part will pmd_none_or_trans_huge_or_clear_bad()
641 * be also null or the pmd_none() check below would be pmd_none_or_trans_huge_or_clear_bad()
666 * become null, but then a page fault can map in a THP and not a
/linux-4.1.27/scripts/
H A Dsetlocalversion46 if test -z "$(git rev-parse --show-cdup 2>/dev/null)" &&
47 head=`git rev-parse --verify --short HEAD 2>/dev/null`; then
51 if [ -z "`git describe --exact-match 2>/dev/null`" ]; then
61 if atag="`git describe 2>/dev/null`"; then
71 if git config --get svn-remote.svn.url >/dev/null; then
85 if test -d .hg && hgid=`hg id 2>/dev/null`; then
109 if rev=`LANG= LC_ALL= LC_MESSAGES=C svn info 2>/dev/null | grep '^Last Changed Rev'`; then
H A Dextract-ikconfig22 tail -c+$(($pos+8)) "$1" | zcat > $tmp1 2> /dev/null
36 tail -c+$pos "$img" | $3 > $tmp2 2> /dev/null
H A Dextract-vmlinux18 readelf -h $1 > /dev/null 2>&1 || return 1
33 tail -c+$pos "$img" | $3 > $tmp 2> /dev/null
H A Dcheck_extable.sh9 objdump -hj __ex_table ${obj} 2> /dev/null > /dev/null
133 objdump -hj .debug_info ${obj} 2> /dev/null > /dev/null ||
H A Dgen_initramfs_list.sh244 && [ -x "`which gzip 2> /dev/null`" ] \
247 && [ -x "`which bzip2 2> /dev/null`" ] \
250 && [ -x "`which lzma 2> /dev/null`" ] \
253 && [ -x "`which xz 2> /dev/null`" ] \
256 && [ -x "`which lzop 2> /dev/null`" ] \
259 && [ -x "`which lz4 2> /dev/null`" ] \
H A Ddecodecode51 ${CROSS_COMPILE}as $AFLAGS -o $1.o $1.s > /dev/null 2>&1
H A Dcoccicheck105 kill ${SPATCH_PID[$i]} 2>/dev/null
116 # $SPATCH -D $MODE $FLAGS -parse_cocci $COCCI $OPT > /dev/null
H A Dobjdiff28 SRCTREE=$(cd $(git rev-parse --show-toplevel 2>/dev/null); pwd)
/linux-4.1.27/arch/m32r/lib/
H A Dstrlen.S38 ; NOTE: If a null char. exists, return 0.
76 not r4, r0 ; NOTE: If a null char. exists, return 0.
84 not r4, r1 ; NOTE: If a null char. exists, return 0.
H A Dusercopy.c36 * Copy a null terminated string from userspace.
305 /* NOTE: If a null char. exists, return 0. strnlen_user()
381 /* NOTE: If a null char. exists, return 0. strnlen_user()
/linux-4.1.27/tools/testing/selftests/firmware/
H A Dfw_userhelper.sh60 if diff -q "$FW" /dev/test_firmware >/dev/null ; then
73 if diff -q "$FW" /dev/test_firmware >/dev/null ; then
82 if ! diff -q "$FW" /dev/test_firmware >/dev/null ; then
H A Dfw_filesystem.sh40 if diff -q "$FW" /dev/test_firmware >/dev/null ; then
55 if ! diff -q "$FW" /dev/test_firmware >/dev/null ; then
/linux-4.1.27/drivers/scsi/
H A Dscsi_sas_internal.h30 * The array of null terminated pointers to attributes
/linux-4.1.27/drivers/crypto/caam/
H A Dcompat.h29 #include <crypto/null.h>
/linux-4.1.27/arch/um/drivers/
H A Dnull.c41 .type = "null",
H A DMakefile54 obj-$(CONFIG_NULL_CHAN) += null.o
64 USER_OBJS := fd.o null.o pty.o tty.o xterm.o slip_common.o pcap_user.o vde_user.o
/linux-4.1.27/arch/mips/include/asm/mach-bcm63xx/
H A Dbcm63xx_nvram.h19 * null terminated if it is exactly 16 bytes long.
/linux-4.1.27/net/atm/
H A Dsignaling.h19 * avoiding huge lists of null values.
/linux-4.1.27/tools/perf/
H A Dperf-with-kcore.sh53 ("$PERF" record -o perf.data.junk $PERF_OPTIONS -- sleep 60) >/dev/null 2>/dev/null &
59 KCORE=$(($SUDO "$PERF" buildid-cache -v -f -k /proc/kcore >/dev/null) 2>&1)
66 wait >/dev/null 2>/dev/null || true
75 wait >/dev/null 2>/dev/null || true
199 if rmdir "$PERF_DATA_DIR" > /dev/null 2>/dev/null ; then
H A Dperf-completion.sh55 type _get_comp_words_by_ref &>/dev/null ||
92 type __ltrim_colon_completions &>/dev/null ||
245 type perf &>/dev/null &&
257 complete -o bashdefault -o default -o nospace -F _perf perf 2>/dev/null \
H A DMakefile27 JOBS := $(shell (getconf _NPROCESSORS_ONLN || egrep -c '^processor|^CPU[0-9]' /proc/cpuinfo) 2>/dev/null)
/linux-4.1.27/tools/testing/selftests/efivarfs/
H A Defivarfs.sh91 rm $file 2>/dev/null
149 rm $file 2>/dev/null
182 printf "$attrs\x00" 2>/dev/null > $file
186 rm $file 2>/dev/null
/linux-4.1.27/arch/blackfin/boot/
H A Dinstall.sh40 if which ${INSTALLKERNEL} >/dev/null 2>&1; then
49 local stamp=$(stat -c %Y ${file} 2>/dev/null)
/linux-4.1.27/arch/blackfin/lib/
H A Dstrncpy.S44 /* if src is shorter than n, we need to null pad bytes in dest
53 /* if the required null padded portion is small, do it here, rather than
/linux-4.1.27/tools/build/feature/
H A DMakefile49 $(BUILD) -fstack-protector-all -O2 -D_FORTIFY_SOURCE=2 -ldw -lelf -lnuma -lelf -laudit -I/usr/include/slang -lslang $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null) $(FLAGS_PERL_EMBED) $(FLAGS_PYTHON_EMBED) -DPACKAGE='"perf"' -lbfd -ldl -lz -llzma
97 $(BUILD) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null)
100 $(BUILD) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null)
105 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
108 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
/linux-4.1.27/drivers/regulator/
H A Dab8500-ext.c66 dev_err(rdev_get_dev(rdev), "regulator info null pointer\n"); ab8500_ext_regulator_enable()
103 dev_err(rdev_get_dev(rdev), "regulator info null pointer\n"); ab8500_ext_regulator_disable()
139 dev_err(rdev_get_dev(rdev), "regulator info null pointer\n"); ab8500_ext_regulator_is_enabled()
171 dev_err(rdev_get_dev(rdev), "regulator info null pointer\n"); ab8500_ext_regulator_set_mode()
220 dev_err(rdev_get_dev(rdev), "regulator info null pointer\n"); ab8500_ext_regulator_get_mode()
262 dev_err(rdev_get_dev(rdev), "regulator constraints null pointer\n"); ab8500_ext_list_voltage()
365 dev_err(&pdev->dev, "null mfd parent\n"); ab8500_ext_regulator_probe()
371 dev_err(&pdev->dev, "null parent pdata\n"); ab8500_ext_regulator_probe()
377 dev_err(&pdev->dev, "null pdata\n"); ab8500_ext_regulator_probe()
/linux-4.1.27/arch/mips/kernel/
H A DMakefile95 CFLAGS_cpu-bugs64.o = $(shell if $(CC) $(KBUILD_CFLAGS) -Wa,-mdaddi -c -o /dev/null -x c /dev/null >/dev/null 2>&1; then echo "-DHAVE_AS_SET_DADDI"; fi)
/linux-4.1.27/lib/raid6/test/
H A DMakefile15 ARCH := $(shell uname -m 2>/dev/null | sed -e /s/i.86/i386/)
37 gcc -c -x assembler - >&/dev/null && \
44 gcc -c -x c - >&/dev/null && \
/linux-4.1.27/drivers/macintosh/ams/
H A Dams.h56 /* calibrated null values */
/linux-4.1.27/drivers/gpu/drm/i915/
H A DMakefile42 # autogenerated null render state
/linux-4.1.27/arch/sparc/prom/
H A Dbootstr_32.c35 /* Leave place for space and null. */ prom_getbootargs()
/linux-4.1.27/arch/x86/boot/
H A Dmkcpustr.c36 also consumes the compiler-added null main()
/linux-4.1.27/arch/alpha/include/uapi/asm/
H A Dgentrap.h21 #define GEN_NULPTRERR -13 /* null pointer error */
/linux-4.1.27/include/linux/can/
H A Dled.h25 * suffix and null terminator
/linux-4.1.27/fs/hfs/
H A Dpart_tbl.c27 u8 pmPartName[32]; /* (null terminated?) string
30 u8 pmPartType[32]; /* (null terminated?) string
H A Dtrans.c88 * Given an ASCII string (not null-terminated) and its length,
/linux-4.1.27/arch/powerpc/include/asm/
H A Dhvcserver.h38 * null-term.
48 char location_code[HVCS_CLC_LENGTH + 1]; /* CLC + 1 null-term char */
H A Dppc-pci.h71 return pdev ? pci_name(pdev) : "<null>"; eeh_pci_name()
76 return (pdev && pdev->driver) ? pdev->driver->name : "<null>"; eeh_driver_name()
/linux-4.1.27/arch/ia64/sn/kernel/sn2/
H A Dptc_deadlock.S42 cmp.ne p8,p9=r0,ptc1 // Test for shub type (ptc1 non-null on shub1)
72 (p7) cmp.ne p7,p0=r0,ptc1;; // Test for non-null ptc1
/linux-4.1.27/lib/
H A Dkstrtox.c108 * @s: The start of the string. The string must be null-terminated, and may also
109 * include a single newline before its terminating null. The first character
132 * @s: The start of the string. The string must be null-terminated, and may also
133 * include a single newline before its terminating null. The first character
204 * @s: The start of the string. The string must be null-terminated, and may also
205 * include a single newline before its terminating null. The first character
235 * @s: The start of the string. The string must be null-terminated, and may also
236 * include a single newline before its terminating null. The first character
H A Dglob.c172 * 2. Pattern to match: null-terminated string
173 * 3. String to match against: null-terminated string
261 * end of the tests. Then come two null-terminated strings: the glob_init()
H A Dvsprintf.c515 s = "(null)"; string()
1463 * Print (null) with the same width as a pointer so it makes pointer()
1468 return string(buf, end, "(null)", spec); pointer()
1809 * @size: The size of the buffer, including the trailing null space
2001 /* the trailing null byte doesn't count towards the total */ vsnprintf()
2010 * @size: The size of the buffer, including the trailing null space
2039 * @size: The size of the buffer, including the trailing null space
2044 * generated for the given input, excluding the trailing null,
2066 * @size: The size of the buffer, including the trailing null space
2210 save_str = "(null)"; vbin_printf()
2263 * @size: The size of the buffer, including the trailing null space
2434 /* the trailing null byte doesn't count towards the total */ bstr_printf()
/linux-4.1.27/tools/testing/selftests/powerpc/pmu/
H A Dcount_instructions.c73 /* Count how many instructions it takes to do a null loop */ determine_overhead()
113 printf("Overhead of null loop: %llu instructions\n", overhead); test_body()
/linux-4.1.27/include/linux/extcon/
H A Dextcon-adc-jack.h43 * @name: name of the extcon device. If null, "adc-jack" is used.
47 * @cable_names: array of cable names ending with null.
/linux-4.1.27/arch/x86/tools/
H A Dgen-insn-attr-x86.awk237 imm = null
238 mod = null
279 variant = null
285 ext = null
286 flags = null
287 opnd = null
/linux-4.1.27/Documentation/DocBook/
H A DMakefile104 ifeq ($(shell which db2ps >/dev/null 2>&1 && echo found),found)
111 ifeq ($(shell which xmlto >/dev/null 2>&1 && echo found),found)
144 @(which xmlto > /dev/null 2>&1) || \
155 @(which xmlto > /dev/null 2>&1) || \
168 @(which fig2dev > /dev/null 2>&1) || \
177 @(which fig2dev > /dev/null 2>&1) || \
/linux-4.1.27/arch/arm/mach-omap2/
H A Dpowerdomain.c85 * -EINVAL if given a null pointer, -EEXIST if a powerdomain is
300 * @po is null, -EEXIST if platform functions have already been
324 * null; or 0 upon success.
417 * to indicate failure; or -EINVAL if the function pointer is null.
490 * starting with 1. Returns -EINVAL if the powerdomain pointer is null.
508 * null or if the power state is invalid for the powerdomin, or returns 0
540 * if the powerdomain pointer is null or returns the next power state
561 * if the powerdomain pointer is null or returns the current power state
586 * if the powerdomain pointer is null or returns the previous power state
610 * -EINVAL if the powerdomain pointer is null or the target power
642 * the powerdomain pointer is null or the target power state is not
680 * the powerdomain pointer is null or the target power state is not
713 * if the powerdomain pointer is null or returns the logic retention
734 * -EINVAL if the powerdomain pointer is null or returns the previous
755 * if the powerdomain pointer is null or returns the next logic
777 * @bank. Returns -EINVAL if the powerdomain pointer is null, -EEXIST if
806 * bank @bank. Returns -EINVAL if the powerdomain pointer is null,
836 * x. Returns -EINVAL if the powerdomain pointer is null, -EEXIST if
863 * is null, or returns 0 upon success.
893 * closely. Returns -EINVAL if the powerdomain pointer is null or if
922 * closely. Returns -EINVAL if the powerdomain pointer is null or if
1084 * Returns -EINVAL if @pwrdm is null or invalid or if the
1147 WARN(1, "powerdomain: %s: pwrdm is null\n", __func__); pwrdm_get_context_loss_count()
H A Dsdrc.c123 * @sdrc_cs[01]: pointers to a null-terminated list of struct omap_sdrc_params
H A Dclockdomain.c69 * Returns -EINVAL if given a null pointer, -EEXIST if a clockdomain is
366 * @co is null, -EEXIST if platform functions have already been
390 * null; or 0 upon success.
429 * registered, -EINVAL if called with a null @ia argument, -EEXIST if
521 * is null.
1039 * null. More information is available in the documentation for the
1152 * by on-chip processors. Returns -EINVAL if passed null pointers;
1177 * (hardware-supervised mode). Returns -EINVAL if passed null
1227 * Returns -EINVAL if passed null pointers;
1257 * Returns -EINVAL if passed null pointers; -ERANGE if the @clkdm usecount
/linux-4.1.27/net/ieee802154/
H A Dnl-phy.c96 return -EINVAL; /* phy name should be null-terminated */ ieee802154_list_phy()
187 return -EINVAL; /* phy name should be null-terminated */ ieee802154_add_iface()
193 return -EINVAL; /* phy name should be null-terminated */ ieee802154_add_iface()
287 return -EINVAL; /* name should be null-terminated */ ieee802154_del_iface()
306 /* name should be null-terminated */ ieee802154_del_iface()
/linux-4.1.27/include/linux/
H A Ddlm.h45 * name: lockspace name, null terminated, up to DLM_LOCKSPACE_LEN (not
46 * including terminating null).
48 * cluster: cluster name, null terminated, up to DLM_LOCKSPACE_LEN (not
49 * including terminating null). Optional. When cluster is null, it
H A Dnls.h87 * nls_nullsize - return length of null character for codepage
90 * Since we can't guarantee that the null terminator will be a particular
H A Datomic.h32 * atomic_inc_not_zero_hint - increment if not null
H A Ddelayacct.h67 /* reinitialize in case parent's non-null pointer was dup'ed*/ delayacct_tsk_init()
H A Ddtlk.h67 unsigned char rom_version[24]; /* null terminated string */
H A Dipmi-fru.h61 * FRU File ID (may be null)
/linux-4.1.27/tools/power/acpi/
H A DMakefile63 cc-supports = ${shell if $(CC) ${1} -S -o /dev/null -x c /dev/null > /dev/null 2>&1; then echo "$(1)"; fi;}
/linux-4.1.27/tools/testing/selftests/cpu-hotplug/
H A Dcpu-on-off-test.sh23 if ! ls $SYSFS/devices/system/cpu/cpu* > /dev/null 2>&1; then
101 if online_cpu $cpu 2> /dev/null; then
123 if offline_cpu $cpu 2> /dev/null; then
/linux-4.1.27/tools/testing/selftests/memory-hotplug/
H A Dmem-on-off-test.sh21 if ! ls $SYSFS/devices/system/memory/memory* > /dev/null 2>&1; then
87 if online_memory $memory 2> /dev/null; then
109 if offline_memory $memory 2> /dev/null; then
/linux-4.1.27/scripts/kconfig/
H A DMakefile211 pkg-config --libs menuw panelw ncursesw 2>/dev/null \
212 || pkg-config --libs menu panel ncurses 2>/dev/null \
223 if ! pkg-config --exists QtCore 2> /dev/null; then \
225 pkg-config --exists qt 2> /dev/null && pkg=qt; \
226 pkg-config --exists qt-mt 2> /dev/null && pkg=qt-mt; \
246 $(HOSTCXX) -print-multi-os-directory > /dev/null 2>&1 && \
H A Dexpr.h92 #define SYMBOL_CHOICE 0x0010 /* start of a choice block (null name) */
143 struct property *next; /* next property - null if last */
/linux-4.1.27/drivers/clk/
H A Dclk-conf.c33 /* skip empty (null) phandles */ __set_clk_parents()
91 /* skip empty (null) phandles */ __set_clk_rates()
/linux-4.1.27/crypto/
H A Dcrypto_null.c9 * The null cipher is compliant with RFC2410.
20 #include <crypto/null.h>
H A Dgcm.c42 struct crypto_skcipher_spawn null; member in struct:crypto_rfc4543_instance_ctx
47 struct crypto_blkcipher *null; member in struct:crypto_rfc4543_ctx
1189 .tfm = ctx->null, crypto_rfc4543_copy_src_to_dst()
1241 struct crypto_blkcipher *null; crypto_rfc4543_init_tfm() local
1249 null = crypto_spawn_blkcipher(&ictx->null.base); crypto_rfc4543_init_tfm()
1250 err = PTR_ERR(null); crypto_rfc4543_init_tfm()
1251 if (IS_ERR(null)) crypto_rfc4543_init_tfm()
1255 ctx->null = null; crypto_rfc4543_init_tfm()
1276 crypto_free_blkcipher(ctx->null); crypto_rfc4543_exit_tfm()
1314 crypto_set_skcipher_spawn(&ctx->null, inst); crypto_rfc4543_alloc()
1315 err = crypto_grab_skcipher(&ctx->null, "ecb(cipher_null)", 0, crypto_rfc4543_alloc()
1320 crypto_skcipher_spawn_alg(&ctx->null); crypto_rfc4543_alloc()
1366 crypto_drop_skcipher(&ctx->null); crypto_rfc4543_alloc()
1380 crypto_drop_skcipher(&ctx->null); crypto_rfc4543_free()
/linux-4.1.27/fs/jfs/
H A Djfs_xattr.h24 * I know the null-terminator is redundant since namelen is stored, but
31 char name[0]; /* Attribute name (includes null-terminator) */
/linux-4.1.27/include/uapi/linux/
H A Dx25.h50 * An X.121 address, it is held as ASCII text, null terminated, up to 15
51 * digits and a null terminator.
H A Dzorro.h70 __be32 ln_Name; /* ID string, null terminated */
/linux-4.1.27/Documentation/mic/mpssd/
H A Dmpss91 ping -c 1 $ipaddr &> /dev/null
136 killall -9 mpssd 2>/dev/null
/linux-4.1.27/fs/cifs/
H A Drfc1002pdu.h45 __u8 scope1; /* null */
48 __u8 scope2; /* null */
H A Dcifssmb.c577 /* null at end of source and target buffers anyway */ CIFSSMBNegotiate()
809 name_len++; /* trailing null */ CIFSPOSIXDelFile()
813 name_len++; /* trailing null */ CIFSPOSIXDelFile()
882 name_len++; /* trailing null */ CIFSSMBDelFile()
886 name_len++; /* trailing null */ CIFSSMBDelFile()
929 name_len++; /* trailing null */ CIFSSMBRmDir()
933 name_len++; /* trailing null */ CIFSSMBRmDir()
974 name_len++; /* trailing null */ CIFSSMBMkDir()
978 name_len++; /* trailing null */ CIFSSMBMkDir()
1024 name_len++; /* trailing null */ CIFSPOSIXCreate()
1028 name_len++; /* trailing null */ CIFSPOSIXCreate()
1191 name_len++; /* trailing null */ SMBLegacyOpen()
1196 name_len++; /* trailing null */ SMBLegacyOpen()
1304 /* trailing null */ CIFS_open()
1313 /* trailing null */ CIFS_open()
1761 } /* else no valid buffer on return - leave as null */ CIFSSMBRead()
2608 name_len++; /* trailing null */ CIFSSMBRename()
2617 name_len2 += 1 /* trailing null */ + 1 /* Signature word */ ; CIFSSMBRename()
2621 name_len++; /* trailing null */ CIFSSMBRename()
2624 name_len2++; /* trailing null */ CIFSSMBRename()
2627 name_len2++; /* trailing null */ CIFSSMBRename()
2759 name_len++; /* trailing null */ CIFSSMBCopy()
2767 name_len2 += 1 /* trailing null */ + 1 /* Signature word */ ; CIFSSMBCopy()
2771 name_len++; /* trailing null */ CIFSSMBCopy()
2774 name_len2++; /* trailing null */ CIFSSMBCopy()
2777 name_len2++; /* trailing null */ CIFSSMBCopy()
2825 name_len++; /* trailing null */ CIFSUnixCreateSymLink()
2830 name_len++; /* trailing null */ CIFSUnixCreateSymLink()
2849 name_len_target++; /* trailing null */ CIFSUnixCreateSymLink()
2853 name_len_target++; /* trailing null */ CIFSUnixCreateSymLink()
2913 name_len++; /* trailing null */ CIFSUnixCreateHardLink()
2918 name_len++; /* trailing null */ CIFSUnixCreateHardLink()
2936 name_len_target++; /* trailing null */ CIFSUnixCreateHardLink()
2940 name_len_target++; /* trailing null */ CIFSUnixCreateHardLink()
3008 name_len++; /* trailing null */ CIFSCreateHardLink()
3018 name_len2 += 1 /* trailing null */ + 1 /* Signature word */ ; CIFSCreateHardLink()
3022 name_len++; /* trailing null */ CIFSCreateHardLink()
3025 name_len2++; /* trailing null */ CIFSCreateHardLink()
3028 name_len2++; /* trailing null */ CIFSCreateHardLink()
3076 name_len++; /* trailing null */ CIFSSMBUnixQuerySymLink()
3080 name_len++; /* trailing null */ CIFSSMBUnixQuerySymLink()
3084 params = 2 /* level */ + 4 /* rsrvd */ + name_len /* incl null */ ; CIFSSMBUnixQuerySymLink()
3500 name_len++; /* trailing null */ CIFSSMBGetPosixACL()
3506 name_len++; /* trailing null */ CIFSSMBGetPosixACL()
3510 params = 2 /* level */ + 4 /* rsrvd */ + name_len /* incl null */ ; CIFSSMBGetPosixACL()
3587 name_len++; /* trailing null */ CIFSSMBSetPosixACL()
3591 name_len++; /* trailing null */ CIFSSMBSetPosixACL()
3995 name_len++; /* trailing null */ SMBQueryInformation()
3999 name_len++; /* trailing null */ SMBQueryInformation()
4133 name_len++; /* trailing null */ CIFSSMBQPathInfo()
4137 name_len++; /* trailing null */ CIFSSMBQPathInfo()
4302 name_len++; /* trailing null */ CIFSSMBUnixQPathInfo()
4306 name_len++; /* trailing null */ CIFSSMBUnixQPathInfo()
4401 name_len += 4; /* now the trailing null */ CIFSFindFirst()
4402 /* null terminate just in case */ CIFSFindFirst()
4421 params = 12 + name_len /* includes null */ ; CIFSFindFirst()
4539 params = 14; /* includes 2 bytes of null string, converted to LE below*/ CIFSFindNext()
4568 /* 14 byte parm len above enough for 2 byte null terminator */ CIFSFindNext()
4709 name_len++; /* trailing null */ CIFSGetSrvInodeNumber()
4713 name_len++; /* trailing null */ CIFSGetSrvInodeNumber()
4717 params = 2 /* level */ + 4 /* rsrvd */ + name_len /* incl null */ ; CIFSGetSrvInodeNumber()
4913 but should never be null here anyway */ CIFSGetDFSRefer()
4928 name_len++; /* trailing null */ CIFSGetDFSRefer()
4932 name_len++; /* trailing null */ CIFSGetDFSRefer()
4941 params = 2 /* level */ + name_len /*includes null */ ; CIFSGetDFSRefer()
5561 name_len++; /* trailing null */ CIFSSMBSetEOF()
5565 name_len++; /* trailing null */ CIFSSMBSetEOF()
5854 name_len++; /* trailing null */ CIFSSMBSetPathInfo()
5858 name_len++; /* trailing null */ CIFSSMBSetPathInfo()
5935 name_len++; /* trailing null */
5939 name_len++; /* trailing null */
6097 name_len++; /* trailing null */ CIFSSMBUnixSetPathInfo()
6101 name_len++; /* trailing null */ CIFSSMBUnixSetPathInfo()
6190 list_len++; /* trailing null */ CIFSSMBQAllEAs()
6194 list_len++; /* trailing null */ CIFSSMBQAllEAs()
6312 /* account for prefix user. and trailing null */ CIFSSMBQAllEAs()
6319 /* null terminate name */ CIFSSMBQAllEAs()
6371 name_len++; /* trailing null */ CIFSSMBSetEA()
6375 name_len++; /* trailing null */ CIFSSMBSetEA()
H A Dcifs_unicode.c172 * string is always properly null terminated and fits in the destination
174 * null terminator).
215 * conversion bleed into the null terminator cifs_from_utf16()
239 /* properly null-terminate string */ cifs_from_utf16()
305 * be after being converted to the given charset, not including any null
560 * be after being converted to the given charset, not including any null
585 * @utf16_len - the length of the allocated string in bytes (including null)
H A Dsmbencrypt.c181 /* Note that password must be uppercased and null terminated */
220 *wpwd = 0; /* Ensure string is null terminated */ E_md4hash()
H A Dsess.c93 bcc_ptr += 2; /* trailing null */ unicode_oslm_strings()
98 bcc_ptr += 2; /* trailing null */ unicode_oslm_strings()
111 /* Sending null domain better than using a bogus domain name (as unicode_domain_string()
120 bcc_ptr += 2; /* account for null terminator */ unicode_domain_string()
142 /* null user mount */ unicode_ssetup_strings()
150 bcc_ptr += 2; /* account for null termination */ unicode_ssetup_strings()
164 /* BB what about null user mounts - check that we do this BB */ ascii_ssetup_strings()
170 /* else null user mount */ ascii_ssetup_strings()
172 bcc_ptr++; /* account for null termination */ ascii_ssetup_strings()
178 } /* else we will send a null domain name ascii_ssetup_strings()
/linux-4.1.27/tools/testing/selftests/powerpc/pmu/ebb/
H A Dinstruction_count_test.c69 /* Count how many instructions it takes to do a null loop */ determine_overhead()
130 printf("Overhead of null loop: %lu instructions\n", overhead); instruction_count()
/linux-4.1.27/drivers/md/
H A Ddm-zero.c43 /* readahead of null bytes only wastes buffer cache */ zero_map()
/linux-4.1.27/drivers/s390/char/
H A Dhmcdrv_ftp.h44 * @fname: filename (ASCII), null-terminated
/linux-4.1.27/drivers/infiniband/hw/usnic/
H A Dusnic_transport.h26 * Returns number of bytes written, excluding null terminator. If
/linux-4.1.27/arch/x86/include/asm/
H A Dpgtable-3level.h46 * function to know if the pmd is null nor not, and in turn to know if
51 * transition from null to not null while pmd_read_atomic runs. So
78 * If the low part is null, we must not read the high part pmd_read_atomic()
/linux-4.1.27/drivers/acpi/acpica/
H A Dutstate.c184 * RETURN: New state object, null on failure
221 * RETURN: New state object, null on failure
258 * RETURN: New state object, null on failure
302 /* Ignore null state */ acpi_ut_delete_generic_state()
H A Dutobject.c74 * RETURN: A new internal object, null on failure
156 * RETURN: Pointer to a new Package object, null on failure
177 * Create the element array. Count+1 allows the array to be null acpi_ut_create_package_object()
198 * RETURN: Pointer to a new Integer object, null on failure
227 * RETURN: Pointer to a new Buffer object, null on failure
340 /* Check for a null pointer */ acpi_ut_valid_internal_object()
H A Dpsutils.c58 * RETURN: A new Scope object, null on failure
108 * RETURN: Pointer to the new Op, null on failure
H A Dutids.c86 /* Get the size of the String to be returned, includes null terminator */ acpi_ut_execute_HID()
162 /* Get the size of the String to be returned, includes null terminator */ acpi_ut_execute_SUB()
231 /* Get the size of the String to be returned, includes null terminator */ acpi_ut_execute_UID()
340 /* String lengths include null terminator */ acpi_ut_execute_CID()
H A Dnsxfobj.c154 /* Return exception if parent is null */ ACPI_EXPORT_SYMBOL()
206 /* If null handle, use the parent */ ACPI_EXPORT_SYMBOL()
218 /* Non-null handle, ignore the parent */ ACPI_EXPORT_SYMBOL()
H A Dexconvrt.c240 * NOTE: Add one to the string length to include the null terminator. acpi_ex_convert_to_buffer()
242 * ASL/AML code that depends on the null being transferred to the new acpi_ex_convert_to_buffer()
373 * Finally, null terminate the string and return the length acpi_ex_convert_to_ascii()
441 * Need enough space for one ASCII integer (plus null terminator) acpi_ex_convert_to_string()
H A Dnsutils.c177 * 1 each for root_prefix, multi_name_prefix_op, segment count, trailing null acpi_ns_get_internal_name_length()
662 * corresponding Node. NOTE: Scope can be null.
679 /* Simplest case is a null pathname */ acpi_ns_get_node()
/linux-4.1.27/arch/s390/boot/compressed/
H A DMakefile13 KBUILD_CFLAGS += $(cflags-y) -fno-delete-null-pointer-checks -msoft-float
/linux-4.1.27/arch/s390/include/asm/
H A Dcpcmd.h20 * cmd: null-terminated command string, max 240 characters
/linux-4.1.27/arch/s390/kernel/
H A DMakefile12 # Passing null pointers is ok for smp code, since we access the lowcore here.
/linux-4.1.27/arch/frv/kernel/
H A Duaccess.c18 * copy a null terminated string from userspace
/linux-4.1.27/samples/bpf/
H A Dtracex2_user.c73 f = popen("dd if=/dev/zero of=/dev/null count=5000000", "r"); main()
/linux-4.1.27/include/linux/decompress/
H A Dgeneric.h16 *posp - if non-null, input position (number of bytes read) will be
H A Dmm.h21 * be null.
/linux-4.1.27/arch/mips/pmcs-msp71xx/
H A Dmsp_prom.c289 * points to a null terminated array of pointers to variables. prom_getenv()
376 len += sizeof(char *); /* plus length of null pointer */ prom_free_prom_memory()
386 argv[prom_argc] = NULL; /* end array with null pointer */ prom_free_prom_memory()
397 len += sizeof(char *); /* plus length of null pointer */ prom_free_prom_memory()
407 envp[i] = NULL; /* end array with null pointer */ prom_free_prom_memory()
/linux-4.1.27/tools/perf/config/
H A DMakefile157 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
158 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
387 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null)
396 GTK_CFLAGS += $(shell $(PKG_CONFIG) --cflags gtk+-2.0 2>/dev/null)
397 GTK_LIBS := $(shell $(PKG_CONFIG) --libs gtk+-2.0 2>/dev/null)
408 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
411 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
453 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
456 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
/linux-4.1.27/drivers/target/
H A Dtarget_core_fabric_lib.c241 * The null-terminated, null-padded (see 4.4.2) ISCSI NAME field iscsi_get_pr_transport_id()
244 * null character terminates the ISCSI NAME field without regard for iscsi_get_pr_transport_id()
274 * The null-terminated, null-padded ISCSI INITIATOR SESSION ID iscsi_get_pr_transport_id()
279 * ID field byte containing an ASCII null character iscsi_get_pr_transport_id()
/linux-4.1.27/fs/hfsplus/
H A Dpart_tbl.c45 u8 pmPartName[32]; /* (null terminated?) string
48 u8 pmPartType[32]; /* (null terminated?) string
/linux-4.1.27/include/uapi/linux/spi/
H A Dspidev.h58 * @tx_buf: Holds pointer to userspace buffer with transmit data, or null.
60 * @rx_buf: Holds pointer to userspace buffer for receive data, or null.
/linux-4.1.27/fs/coda/
H A Dupcall.c145 /* send Venus a null terminated string */ venus_lookup()
216 /* Venus must get null terminated string */ venus_mkdir()
250 /* Venus must receive an null terminated string */ venus_rename()
255 /* another null terminated string for Venus */ venus_rename()
287 /* Venus must get null terminated string */ venus_create()
394 /* make sure strings are null terminated */ venus_link()
420 /* Round up to word boundary and null terminate */ venus_symlink()
426 /* Round up to word boundary and null terminate */ venus_symlink()
/linux-4.1.27/net/bridge/netfilter/
H A Debt_vlan.c117 * 0 - The null VLAN ID. ebt_vlan_mt_check()
134 /* Else, id=0 (null VLAN ID) => user_priority range (any?) */ ebt_vlan_mt_check()
/linux-4.1.27/sound/core/
H A Dmisc.c109 * @list: quirk list, terminated by a null entry
137 * @list: quirk list, terminated by a null entry
/linux-4.1.27/drivers/net/ethernet/cisco/enic/
H A Dvnic_vic.h24 /* Note: String field lengths include null char */
/linux-4.1.27/drivers/staging/speakup/
H A Dspeakup_dtlk.h36 u_char rom_version[24]; /* null terminated string */
/linux-4.1.27/arch/x86/platform/efi/
H A Defi-bgrt.c64 pr_err("Ignoring BGRT: null image address\n"); efi_bgrt_init()
/linux-4.1.27/arch/x86/platform/geode/
H A Dnet5501.c115 bios = rombase + 0x20; /* null terminated */ net5501_present()
/linux-4.1.27/drivers/char/
H A Dsnsc.h52 #define IR_ARG_ASCII 0x01 /* null-terminated ASCII string */
H A Dnwbutton.c47 * do so and return -ENOMEM. If an attempt is made to register a null pointer,
106 * of the list and works up to the end. It will refuse to follow a null
/linux-4.1.27/arch/metag/tbx/
H A Dtbistring.c39 * include null terminator __TBIFindStr()
/linux-4.1.27/drivers/thunderbolt/
H A Dcap.c66 * "Hey, we could terminate some capability lists with a null offset tb_cap_next()
/linux-4.1.27/fs/xfs/libxfs/
H A Dxfs_attr_sf.h51 __uint8_t namelen; /* length of name value (no null) */
/linux-4.1.27/fs/nfsd/
H A Dexport.h36 * than the eight pseudoflavors null, unix, krb5, krb5i, krb5p, skpm3,
/linux-4.1.27/include/video/
H A Dudlfb.h48 char *edid; /* null until we read edid from hw or get from sysfs */
/linux-4.1.27/arch/mn10300/lib/
H A Dusercopy.c31 * Copy a null terminated string from userspace.
/linux-4.1.27/arch/powerpc/boot/
H A Dplanetcore.c26 * newlines into null bytes.
H A Dps3-head.S60 /* Save the value at addr zero for a null pointer write check later. */
H A Dps3.c159 printf("null check failed: %lx != %lx\n\r", val, null_check); platform_init()
/linux-4.1.27/arch/blackfin/kernel/
H A Dshadow_console.c30 * save 2 bytes for the double null at the end early_shadow_write()
/linux-4.1.27/arch/hexagon/include/asm/
H A Dmmu_context.h36 * this is almost invariably a null function.
H A Dpgtable.h203 * For the Hexagon Virtual Machine MMU (or its emulation), a null/invalid
206 * as a universal null entry, but some of those least significant bits
218 * Conveniently, a null PTE value is invalid.
277 * As we have no known cause of badness, it's null, as it is for many
H A Delf.h195 * static executables will be well-behaved, we would null the register
197 * leave it a null macro.
/linux-4.1.27/arch/m68k/math-emu/
H A Dfp_decode.h174 | .long "reserved","null displacement"
184 | .long "no memory indirect action/reserved","null outer displacement"
368 1: printf PDECODE,"0" | null base displacement
390 1: printf PDECODE,"0" | null outer displacement
H A Dfp_log.c79 * which has a null point on x = sqrt(r). fp_fsqrt()
/linux-4.1.27/arch/arm/boot/compressed/
H A Dhead-shmobile.S68 mov r8, #0 @ pass null pointer as atag
/linux-4.1.27/net/netfilter/
H A Dxt_LOG.c60 pr_debug("prefix is not null-terminated\n"); log_tg_check()
/linux-4.1.27/sound/ppc/
H A Dsnd_ps3.h94 /* null buffer */
/linux-4.1.27/tools/power/cpupower/
H A DMakefile114 cc-supports = ${shell if $(CC) ${1} -S -o /dev/null -x c /dev/null > /dev/null 2>&1; then echo "$(1)"; fi;}
251 $(QUIET) $(MKDIR) -p $@ 2>/dev/null
/linux-4.1.27/drivers/net/wireless/ath/ath10k/
H A Ddebugfs_sta.c96 /* make sure that buf is null terminated */ ath10k_dbg_sta_write_addba()
147 /* make sure that buf is null terminated */ ath10k_dbg_sta_write_addba_resp()
197 /* make sure that buf is null terminated */ ath10k_dbg_sta_write_delba()
/linux-4.1.27/arch/metag/include/asm/
H A Duaccess.h177 * Copy a null terminated string from userspace.
182 * bytes copied if we hit a null byte
183 * (without the null byte)
/linux-4.1.27/drivers/usb/gadget/
H A Dconfig.c28 * @src: Array of descriptor pointers, terminated by null pointer.
45 /* fill buffer from src[] until null descriptor ptr */ usb_descriptor_fillbuf()
114 * @src: null-terminated vector to copy
H A Depautoconf.c243 * assigning ep->driver_data to some non-null value.
245 * On failure, this returns a null endpoint descriptor.
347 * by assigning ep->driver_data to some non-null value.
349 * On failure, this returns a null endpoint descriptor.
/linux-4.1.27/arch/nios2/include/asm/
H A Dpgtable.h229 pte_t null; pte_clear() local
231 pte_val(null) = (addr >> PAGE_SHIFT) & 0xf; pte_clear()
233 set_pte_at(mm, addr, ptep, null); pte_clear()
/linux-4.1.27/drivers/staging/rtl8188eu/include/
H A Drtl8188e_hal.h105 /* 2*BCN / 1*ps-poll / 1*null-data /1*prob_rsp /1*QOS null-data /1*BT QOS
106 * null-data */
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/
H A Dfwil.c310 namelen = strlen(name) + 1; /* lengh of iovar name + null */ brcmf_create_bsscfg()
320 /* copy prefix, no null */ brcmf_create_bsscfg()
324 /* copy iovar name including null */ brcmf_create_bsscfg()
/linux-4.1.27/arch/sparc/include/asm/
H A Doplib_64.h209 /* Acquire a string property, null string on error. */
222 * Returns a null string on error. Buffer should be at least 32B long.
227 * node. Returns null string on failure. Buffer should be at least 32B long.
H A Doplib_32.h141 /* Acquire a string property, null string on error. */
150 * node. Returns null string on failure.
/linux-4.1.27/arch/arm64/lib/
H A Dstrncmp.S178 cbnz pos, 1f /*find the null or unequal...*/
206 ccmp endloop, #0, #0, eq /*has_null is ZERO: no null byte*/
240 ccmp endloop, #0, #0, eq /*has_null is ZERO: no null byte*/
H A Dstrnlen.S97 cbz tmp1, .Lhit_limit /* No null in final Qword. */
100 * We know there's a null in the final Qword. The easiest thing
/linux-4.1.27/arch/m68k/include/asm/
H A Doplib.h240 /* Acquire a string property, null string on error. */
252 * Returns a null string on error.
257 * node. Returns null string on failure.
/linux-4.1.27/drivers/md/bcache/
H A Dclosure.h85 * a (possibly null) parent.
87 * If parent is non null, the new closure will have a refcount for its lifetime;
89 * function to run is null. Hence
94 * returns up the C stack. continue_at() with non null fn is better thought of
/linux-4.1.27/drivers/gpu/drm/exynos/
H A Dexynos_drm_iommu.c91 DRM_ERROR("iommu_mapping is null.\n"); drm_iommu_attach_device()
/linux-4.1.27/drivers/gpu/drm/msm/
H A Dmsm_gem.h41 struct msm_gpu *gpu; /* non-null if active */
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/gr/
H A Dnv25.c14 { 0x0030, &nv04_gr_ofuncs, NULL }, /* null */
H A Dnv34.c14 { 0x0030, &nv04_gr_ofuncs, NULL }, /* null */
H A Dnv35.c14 { 0x0030, &nv04_gr_ofuncs, NULL }, /* null */
/linux-4.1.27/drivers/video/fbdev/mb862xx/
H A Dmb862xx-i2c.c120 dev_dbg(par->dev, "%s: null msgs\n", __func__); mb862xx_xfer()
/linux-4.1.27/include/trace/events/
H A Dsunrpc.h383 "(null)")
385 "(null)")
392 xprt->address_strings[RPC_DISPLAY_ADDR] : "(null)");
394 xprt->address_strings[RPC_DISPLAY_PORT] : "(null)");
/linux-4.1.27/include/linux/platform_data/
H A Di2c-s3c2410.h49 * This call will set cfg_gpio if is null to the default platform
/linux-4.1.27/net/9p/
H A Dutil.c96 /* no need to store exactly p, we just need something non-null */ p9_idpool_get()
/linux-4.1.27/net/sunrpc/
H A Dsvcauth.c117 * it's second argument 'new'. If this is non-null, it will
/linux-4.1.27/sound/drivers/
H A Dpcm-indirect2.c416 snd_pcm_indirect2_zero_t null) snd_pcm_indirect2_capture_transfer()
456 bytes = null(substream, rec); snd_pcm_indirect2_capture_transfer()
540 snd_pcm_indirect2_zero_t null) snd_pcm_indirect2_capture_interrupt()
553 snd_pcm_indirect2_capture_transfer(substream, rec, copy, null); snd_pcm_indirect2_capture_interrupt()
413 snd_pcm_indirect2_capture_transfer(struct snd_pcm_substream *substream, struct snd_pcm_indirect2 *rec, snd_pcm_indirect2_copy_t copy, snd_pcm_indirect2_zero_t null) snd_pcm_indirect2_capture_transfer() argument
537 snd_pcm_indirect2_capture_interrupt(struct snd_pcm_substream *substream, struct snd_pcm_indirect2 *rec, snd_pcm_indirect2_copy_t copy, snd_pcm_indirect2_zero_t null) snd_pcm_indirect2_capture_interrupt() argument
/linux-4.1.27/tools/perf/util/
H A Dthread-stack.h75 * @ip: only if sym is null, the ip of the function
/linux-4.1.27/drivers/mmc/core/
H A Dsdio_cis.c33 /* Find all null-terminated (including zero length) strings in cistpl_vers_1()
272 /* null entries have no link field or data */ sdio_read_cis()
/linux-4.1.27/drivers/media/usb/pvrusb2/
H A Dpvrusb2-devattr.h50 initialize the module. It's safe to make this null terminated
52 address of zero. If this is a null pointer or zero-length,
/linux-4.1.27/drivers/pci/hotplug/
H A Dcpci_hotplug_pci.c264 dbg("pci_dev null, finding %02x:%02x:%x", cpci_configure_slot()
272 dbg("pci_dev still null"); cpci_configure_slot()
/linux-4.1.27/arch/ia64/mm/
H A Dfault.c136 * this case vma will be null, but prev_vma will ne non-null ia64_do_page_fault()
/linux-4.1.27/scripts/package/
H A DMakefile75 which fakeroot >/dev/null 2>&1 && \
119 util/PERF-VERSION-GEN ../../$(perf-tar)/ 2>/dev/null); \
/linux-4.1.27/drivers/staging/rtl8192e/
H A Drtl819x_HTProc.c295 "posHTCap or pHTInfo can't be null in HTConstructCapabilityElement()\n"); HTConstructCapabilityElement()
377 "posHTInfo or pHTInfoEle can't be null in HTConstructInfoElement()\n"); HTConstructInfoElement()
417 "posRT2RTAgg can't be null in HTConstructRT2RTAggElement()\n"); HTConstructRT2RTAggElement()
441 "pOperateMCS can't be null in HT_PickMCSRate()\n"); HT_PickMCSRate()
476 "pMCSRateSet or pMCSFilter can't be null in HTGetHighestMCSRate()\n"); HTGetHighestMCSRate()
/linux-4.1.27/drivers/staging/rtl8723au/hal/
H A Drtl8723a_cmd.c487 /* 3 (3) null data */ SetFwRsvdPagePkt()
517 /* 3 (5) Qos null data */ SetFwRsvdPagePkt()
532 /* 3 (6) BT Qos null data */ SetFwRsvdPagePkt()
679 /* 3 (3) null data */ SetFwRsvdPagePkt_BTCoex()
694 /* 3 (6) BT Qos null data */ SetFwRsvdPagePkt_BTCoex()
/linux-4.1.27/kernel/debug/kdb/
H A Dkdb_io.c207 * and null byte */ kdb_read()
608 * (vsnprintf does null-terminate the string that it generates) vkdb_printf()
691 * should be printed, up to the null. vkdb_printf()
835 * the terminating null, and cphold points to the null. vkdb_printf()
/linux-4.1.27/drivers/media/platform/s3c-camif/
H A Dcamif-core.c106 * @pixelformat: fourcc to match, ignored if null
557 /* null op on s3c244x */ s3c_camif_runtime_resume()
566 /* null op on s3c244x */ s3c_camif_runtime_suspend()
/linux-4.1.27/arch/mips/
H A DMakefile239 entry-y = 0x$(shell $(NM) vmlinux 2>/dev/null \
278 CHECKFLAGS += $(shell $(CC) $(KBUILD_CFLAGS) -dM -E -x c /dev/null | \
305 ifeq ($(shell expr $(load-y) \< 0xffffffff80000000 2> /dev/null), 0)
/linux-4.1.27/arch/mips/include/asm/
H A Dpgtable.h158 pte_t null = __pte(0); pte_clear() local
163 null.pte_high = _PAGE_GLOBAL; pte_clear()
165 set_pte_at(mm, addr, ptep, null); pte_clear()
/linux-4.1.27/arch/cris/include/arch-v10/arch/
H A Duaccess.h82 * Copy a null terminated string from userspace.
87 * bytes copied if we hit a null byte
88 * (without the null byte)
/linux-4.1.27/arch/cris/include/arch-v32/arch/
H A Duaccess.h88 * Copy a null terminated string from userspace.
93 * bytes copied if we hit a null byte
94 * (without the null byte)

Completed in 5891 milliseconds

123456