Searched defs:resbuf (Results 1 - 9 of 9) sorted by relevance

/external/ltp/testcases/kernel/syscalls/gethostbyname_r/
H A Dgethostbyname_r01.c68 struct hostent resbuf; local
84 retval = gethostbyname_r(name, &resbuf, temp.buffer,
/external/elfutils/lib/
H A Dmd5.c69 md5_read_ctx (const struct md5_ctx *ctx, void *resbuf) argument
71 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);
72 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);
73 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);
74 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);
76 return resbuf;
95 md5_finish_ctx (struct md5_ctx *ctx, void *resbuf) argument
118 return md5_read_ctx (ctx, resbuf);
H A Dsha1.c69 sha1_read_ctx (const struct sha1_ctx *ctx, void *resbuf) argument
71 ((sha1_uint32 *) resbuf)[0] = SWAP (ctx->A);
72 ((sha1_uint32 *) resbuf)[1] = SWAP (ctx->B);
73 ((sha1_uint32 *) resbuf)[2] = SWAP (ctx->C);
74 ((sha1_uint32 *) resbuf)[3] = SWAP (ctx->D);
75 ((sha1_uint32 *) resbuf)[4] = SWAP (ctx->E);
77 return resbuf;
93 sha1_finish_ctx (struct sha1_ctx *ctx, void *resbuf) argument
116 return sha1_read_ctx (ctx, resbuf);
/external/syslinux/com32/libutil/
H A Dsha256crypt.c180 static void *sha256_finish_ctx(struct sha256_ctx *ctx, void *resbuf) argument
205 ((uint32_t *) resbuf)[i] = SWAP(ctx->H[i]);
207 return resbuf;
H A Dsha512crypt.c211 static void *sha512_finish_ctx(struct sha512_ctx *ctx, void *resbuf) argument
236 ((uint64_t *) resbuf)[i] = SWAP(ctx->H[i]);
238 return resbuf;
/external/mksh/src/
H A Dexec.c1577 hereinval(struct ioword *iop, int sub, char **resbuf, struct shf *shf) argument
1603 if (resbuf == NULL)
1606 strdupx(*resbuf, ccp, APERM);
1613 herein(struct ioword *iop, char **resbuf) argument
1624 if (resbuf != NULL)
1625 return (hereinval(iop, i, resbuf, NULL));
/external/python/cpython2/Modules/_ctypes/
H A Dcallproc.c1100 void *resbuf; local
1168 resbuf = alloca(max(rtype->size, sizeof(ffi_arg)));
1172 if (!resbuf || !avalues || !atypes) {
1185 rtype, resbuf,
1205 resbuf = (char *)resbuf + sizeof(ffi_arg) - rtype->size;
1210 if (*(int *)resbuf & 0x80000000)
1211 retval = GetComError(*(HRESULT *)resbuf, iid, pIunk);
1213 retval = PyInt_FromLong(*(int *)resbuf);
1215 if (*(int *)resbuf
[all...]
/external/kernel-headers/original/uapi/linux/
H A Di2o-dev.h60 void __user *resbuf; /* Buffer for result */ member in struct:i2o_cmd_hrtlct
69 void __user *resbuf; /* Result List buffer */ member in struct:i2o_cmd_psetget
88 void __user *resbuf; /* Buffer for reply HTML page */ member in struct:i2o_html
/external/libxml2/
H A Dxmlreader.c1701 xmlChar *resbuf; local
1725 resbuf = buff->content;
1729 return resbuf;
1747 xmlChar *resbuf; local
1769 resbuf = buff->content;
1774 return resbuf;

Completed in 3966 milliseconds