Searched refs:E2BIG (Results 1 - 25 of 419) sorted by relevance

1234567891011>>

/linux-master/lib/
H A Dstrscpy_kunit.c53 if (count && written == -E2BIG) {
55 "buffer state invalid for -E2BIG");
96 tc(test, "a", 0, -E2BIG, 0, 0, 0);
97 tc(test, "", 0, -E2BIG, 0, 0, 0);
99 tc(test, "a", 1, -E2BIG, 0, 1, 0);
102 tc(test, "ab", 2, -E2BIG, 1, 1, 0);
106 tc(test, "abc", 3, -E2BIG, 2, 1, 0);
111 tc(test, "abcd", 4, -E2BIG, 3, 1, 0);
121 KUNIT_EXPECT_EQ(test, strscpy(dest, "", 0), -E2BIG);
123 KUNIT_EXPECT_EQ(test, strscpy(dest, "Fixed", 3), -E2BIG);
[all...]
H A Ducs2_string.c49 * %NUL terminator) or -E2BIG if @count is 0 or @src was truncated due to the
61 return -E2BIG;
83 return -E2BIG;
/linux-master/include/uapi/linux/
H A Dkvm_para.h17 #define KVM_E2BIG E2BIG
/linux-master/include/uapi/asm-generic/
H A Derrno-base.h11 #define E2BIG 7 /* Argument list too long */ macro
/linux-master/tools/include/uapi/asm-generic/
H A Derrno-base.h11 #define E2BIG 7 /* Argument list too long */ macro
/linux-master/tools/testing/selftests/bpf/progs/
H A Dbpf_iter_task_btf.c38 case -E2BIG:
/linux-master/drivers/gpu/drm/nouveau/include/nvif/
H A Dunpack.h22 _ret = *_size ? -E2BIG : 0; \
/linux-master/drivers/gpu/drm/i915/
H A Dintel_region_ttm.c213 ret = -E2BIG;
218 ret = -E2BIG;
228 ret = -E2BIG;
H A Di915_user_extensions.c29 return -E2BIG;
/linux-master/drivers/misc/lkdtm/
H A Dfortify.c156 /* Vanilla strscpy returns -E2BIG if size is 0. */
157 if (strscpy(dst, src, 0) != -E2BIG)
158 pr_warn("FAIL: strscpy() of 0 length did not return -E2BIG\n");
160 /* Vanilla strscpy returns -E2BIG if src is truncated. */
161 if (strscpy(dst, src, sizeof(dst)) != -E2BIG)
162 pr_warn("FAIL: strscpy() did not return -E2BIG while src is truncated\n");
/linux-master/drivers/gpu/drm/i915/gem/selftests/
H A Dhuge_gem_object.c38 return -E2BIG;
114 return ERR_PTR(-E2BIG);
/linux-master/include/xen/interface/io/
H A Dxs_wire.h69 XSD_ERROR(E2BIG)
/linux-master/tools/testing/selftests/clone3/
H A Dclone3.c244 .expected = -E2BIG,
251 .expected = -E2BIG,
258 .expected = -E2BIG,
288 .expected = -E2BIG,
/linux-master/security/
H A Dlsm_syscalls.c73 * insufficient to contain the return data -E2BIG is returned and
92 * the return data -E2BIG is returned and @size is set to the minimum
113 return -E2BIG;
/linux-master/net/ceph/
H A Dcls_lock_client.c50 return -E2BIG;
109 return -E2BIG;
162 return -E2BIG;
211 return -E2BIG;
350 return -E2BIG;
405 return -E2BIG;
/linux-master/security/keys/trusted-keys/
H A Dtrusted_tpm2.c307 rc = -E2BIG;
317 rc = -E2BIG;
356 * -E2BIG on wrong payload size.
392 return -E2BIG;
396 return -E2BIG;
410 return -E2BIG;
426 rc = -E2BIG;
/linux-master/fs/fuse/
H A Dacl.c49 acl = ERR_PTR(-E2BIG);
131 return -E2BIG;
/linux-master/include/net/
H A Diw_handler.h512 return ERR_PTR(-E2BIG);
531 return ERR_PTR(-E2BIG);
/linux-master/drivers/gpu/drm/i915/gem/
H A Di915_gem_internal.c44 return -E2BIG;
151 return ERR_PTR(-E2BIG);
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dtrampoline_count.c76 /* with E2BIG error */
77 if (!ASSERT_EQ(libbpf_get_error(link), -E2BIG, "E2BIG"))
/linux-master/drivers/net/ethernet/intel/iavf/
H A Diavf_adminq.h94 -E2BIG, /* IAVF_AQ_RC_E2BIG */
/linux-master/drivers/net/ethernet/intel/i40e/
H A Di40e_adminq.h94 -E2BIG, /* I40E_AQ_RC_E2BIG */
/linux-master/tools/testing/selftests/landlock/
H A Dbase_test.c50 ASSERT_EQ(E2BIG, errno);
65 ASSERT_EQ(E2BIG, errno);
68 ASSERT_EQ(E2BIG, errno);
128 ASSERT_EQ(E2BIG, errno);
/linux-master/arch/um/os-Linux/
H A Dumid.c102 ret = -E2BIG;
244 return -E2BIG;
348 return -E2BIG;
/linux-master/tools/testing/selftests/kvm/aarch64/
H A Dvgic_init.c167 TEST_ASSERT(ret && errno == E2BIG, "dist address beyond IPA limit");
171 TEST_ASSERT(ret && errno == E2BIG, "redist address beyond IPA limit");
177 TEST_ASSERT(ret && errno == E2BIG,
269 TEST_ASSERT(ret && errno == E2BIG,
276 TEST_ASSERT(ret && errno == E2BIG,
610 TEST_ASSERT(ret && errno == E2BIG,
616 TEST_ASSERT(ret && errno == E2BIG,

Completed in 421 milliseconds

1234567891011>>