Searched refs:st_size (Results 1 - 25 of 114) sorted by last modified time

12345

/linux-master/fs/9p/
H A Dvfs_inode_dotl.c594 v9inode->netfs.remote_i_size = stat->st_size;
596 v9fs_i_size_write(inode, stat->st_size);
624 v9inode->netfs.remote_i_size = stat->st_size;
625 v9fs_i_size_write(inode, stat->st_size);
/linux-master/net/9p/
H A Dclient.c1749 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1760 ret->st_rdev, ret->st_size, ret->st_blksize, ret->st_blocks,
/linux-master/scripts/mod/
H A Dmodpost.c120 buf = NOFAIL(malloc(st.st_size + 1));
122 nbytes = st.st_size;
135 buf[st.st_size] = '\0';
400 *size = st.st_size;
553 sym->st_size = TO_NATIVE(sym->st_size);
2013 if (st.st_size != b->pos)
H A Dfile2alias.c1625 zeros = calloc(1, sym->st_size);
1633 do_usb_table(symval, sym->st_size, mod);
1635 do_of_table(symval, sym->st_size, mod);
1637 do_pnp_device_entry(symval, sym->st_size, mod);
1639 do_pnp_card_entries(symval, sym->st_size, mod);
1647 do_table(symval, sym->st_size, p->id_size,
/linux-master/tools/testing/selftests/net/
H A Dtls.c408 EXPECT_GE(sendfile(self->fd, filefd, 0, st.st_size), 0);
422 buf = (char *)malloc(st.st_size);
428 EXPECT_GE(sendfile(self->fd, filefd, 0, st.st_size), 0);
429 EXPECT_EQ(recv(self->cfd, buf, st.st_size, MSG_WAITALL), st.st_size);
/linux-master/tools/testing/selftests/exec/
H A Dexecveat.c161 sendfile(out_fd, in_fd, NULL, info.st_size);
/linux-master/tools/lib/bpf/
H A Dlibbpf.c856 prog_sz = sym->st_size;
H A Dlinker.c435 init_sym->st_size = 0;
815 || sym->st_value != 0 || sym->st_size != 0) {
833 || sym->st_value != 0 || sym->st_size != 0) {
1965 dst_sym->st_size = sym->st_size;
1996 dst_sym->st_size = sym->st_size;
/linux-master/tools/bpf/bpftool/
H A Dgen.c1192 file_sz = st.st_size;
1581 file_sz = st.st_size;
/linux-master/scripts/kconfig/
H A Dconfdata.c68 if (st1.st_size != st2.st_size)
71 map1 = mmap(NULL, st1.st_size, PROT_READ, MAP_PRIVATE, fd1, 0);
75 map2 = mmap(NULL, st2.st_size, PROT_READ, MAP_PRIVATE, fd2, 0);
79 if (bcmp(map1, map2, st1.st_size))
/linux-master/tools/testing/selftests/kvm/
H A Dguest_memfd_test.c54 TEST_ASSERT_EQ(sb.st_size, total_size);
157 TEST_ASSERT(st1.st_size == 4096, "memfd st_size should match requested size");
164 TEST_ASSERT(st2.st_size == 8192, "second memfd st_size should match requested size");
168 TEST_ASSERT(st1.st_size == 4096, "first memfd st_size should still match requested size");
/linux-master/arch/sparc/vdso/
H A Dvma.c128 osym->st_size = nsym->st_size;
196 osym->st_size = nsym->st_size;
/linux-master/tools/testing/selftests/memfd/
H A Dmemfd_test.c246 } else if (st.st_size != size) {
248 (long long)st.st_size, (long long)size);
/linux-master/tools/perf/util/
H A Dsymbol-elf.c1786 f = symbol__new(sym.st_value, sym.st_size,
H A Ddata.c144 file->size = st.st_size;
175 file->size = st.st_size;
222 if (!stat(data->path, &st) && st.st_size) {
287 if (!st.st_size) {
293 data->file.size = st.st_size;
/linux-master/tools/perf/
H A Dbuiltin-trace.c1424 if (lstat(linkname, &st) < 0 || st.st_size + 1 > (off_t)sizeof(pathname))
1429 if (ret < 0 || ret > st.st_size)
4396 if (!stat(filename, &st) && st.st_size) {
H A Dbuiltin-script.c378 st.st_size / 1024.0 / 1024.0, es->filename, es->samples);
4344 if (!perf_stat.st_size) {
/linux-master/kernel/
H A Dkexec_file.c1155 if (sym->st_size != size) {
1157 name, (unsigned long)sym->st_size, size);
/linux-master/include/uapi/linux/
H A Delf.h191 Elf32_Word st_size; member in struct:elf32_sym
203 Elf64_Xword st_size; /* Associated symbol size */ member in struct:elf64_sym
/linux-master/arch/x86/kernel/
H A Dmachine_kexec_64.c441 sym->st_size);
/linux-master/arch/arm64/kernel/pi/
H A Drelacheck.c66 ehdr = mmap(0, stat.st_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
/linux-master/tools/testing/selftests/landlock/
H A Dfs_test.c1948 ASSERT_EQ(statbuf.st_size,
1949 sendfile(dst_fd, src_fd, 0, statbuf.st_size));
/linux-master/tools/bpf/resolve_btfids/
H A Dmain.c489 id->cnt = sym.st_size / sizeof(uint64_t) - 1;
501 id->cnt = sym.st_size / sizeof(int) - 1;
/linux-master/arch/x86/tools/
H A Drelocs.c545 sym->st_size = elf_xword_to_cpu(sym->st_size);
622 j, sym->st_value, sym->st_size,
/linux-master/arch/x86/include/asm/
H A Dia32.h44 long long st_size; member in struct:stat64

Completed in 2980 milliseconds

12345