Searched refs:lenp (Results 126 - 136 of 136) sorted by path

123456

/linux-master/net/sunrpc/
H A Dxdr.c107 unsigned int *lenp, unsigned int maxlen)
114 *lenp = len;
106 xdr_decode_string_inplace(__be32 *p, char **sp, unsigned int *lenp, unsigned int maxlen) argument
/linux-master/net/sunrpc/xprtrdma/
H A Dsvc_rdma.c78 void *buffer, size_t *lenp, loff_t *ppos)
95 *lenp = 0;
99 if (len > *lenp)
100 len = *lenp;
103 *lenp = len;
77 svcrdma_counter_handler(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) argument
/linux-master/scripts/dtc/libfdt/
H A Dfdt.c164 const fdt32_t *tagp, *lenp; local
188 lenp = fdt_offset_ptr(fdt, offset, sizeof(*lenp));
189 if (!can_assume(VALID_DTB) && !lenp)
192 len = fdt32_to_cpu(*lenp);
H A Dfdt_ro.c34 const char *fdt_get_string(const void *fdt, int stroffset, int *lenp) argument
45 if (lenp)
46 *lenp = strlen(s);
90 if (lenp)
91 *lenp = n - s;
95 if (lenp)
96 *lenp = err;
358 int *lenp)
365 if (lenp)
366 *lenp
356 fdt_get_property_by_offset_(const void *fdt, int offset, int *lenp) argument
378 fdt_get_property_by_offset(const void *fdt, int offset, int *lenp) argument
394 fdt_get_property_namelen_(const void *fdt, int offset, const char *name, int namelen, int *lenp, int *poffset) argument
425 fdt_get_property_namelen(const void *fdt, int offset, const char *name, int namelen, int *lenp) argument
443 fdt_get_property(const void *fdt, int nodeoffset, const char *name, int *lenp) argument
451 fdt_getprop_namelen(const void *fdt, int nodeoffset, const char *name, int namelen, int *lenp) argument
469 fdt_getprop_by_offset(const void *fdt, int offset, const char **namep, int *lenp) argument
502 fdt_getprop(const void *fdt, int nodeoffset, const char *name, int *lenp) argument
778 fdt_stringlist_get(const void *fdt, int nodeoffset, const char *property, int idx, int *lenp) argument
[all...]
H A Dlibfdt.h343 * @lenp: optional pointer to return the string's length
347 * returns the string's length in *lenp.
353 const char *fdt_get_string(const void *fdt, int stroffset, int *lenp);
544 * @lenp: pointer to an integer variable (will be overwritten) or NULL
547 * device tree node at structure block offset nodeoffset. If lenp is
549 * pointed to by lenp.
553 * If lenp is non-NULL, *lenp contains the length of that name
556 * if lenp is non-NULL *lenp contain
663 fdt_get_property_by_offset_w(void *fdt, int offset, int *lenp) argument
722 fdt_get_property_w(void *fdt, int nodeoffset, const char *name, int *lenp) argument
782 fdt_getprop_namelen_w(void *fdt, int nodeoffset, const char *name, int namelen, int *lenp) argument
821 fdt_getprop_w(void *fdt, int nodeoffset, const char *name, int *lenp) argument
[all...]
/linux-master/scripts/dtc/
H A Dutil.c97 int lenp = strlen(path); local
103 len = lenp + lenn + 2;
104 if ((lenp > 0) && (path[lenp-1] == '/')) {
110 memcpy(str, path, lenp);
112 str[lenp] = '/';
113 lenp++;
115 memcpy(str+lenp, name, lenn+1);
/linux-master/security/apparmor/
H A Dlsm.c2033 void *buffer, size_t *lenp, loff_t *ppos)
2040 return proc_dointvec(table, write, buffer, lenp, ppos);
2032 apparmor_dointvec(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) argument
/linux-master/security/
H A Dmin_addr.c33 void *buffer, size_t *lenp, loff_t *ppos)
40 ret = proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
32 mmap_min_addr_handler(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) argument
/linux-master/security/yama/
H A Dyama_lsm.c439 void *buffer, size_t *lenp, loff_t *ppos)
451 return proc_dointvec_minmax(&table_copy, write, buffer, lenp, ppos);
438 yama_dointvec_minmax(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) argument
/linux-master/tools/perf/util/intel-pt-decoder/
H A Dintel-pt-insn-decoder.c212 u8 *inbuf, int inlen, int *lenp)
223 if (lenp)
224 *lenp = insn.length;
211 dump_insn(struct perf_insn *x, uint64_t ip __maybe_unused, u8 *inbuf, int inlen, int *lenp) argument
/linux-master/tools/perf/util/
H A Dsrccode.c156 char *find_sourceline(char *fn, unsigned line, int *lenp) argument
169 *lenp = p - l;

Completed in 372 milliseconds

123456