HomeSort by relevance Sort by last modified time
    Searched refs:resbuf (Results 1 - 25 of 37) sorted by null

1 2

  /ndk/sources/host-tools/gdb-stub/
gdb-stub.c 82 char *envbuf, *sep, *resbuf, *cmdbuf; local
117 (resbuf = (char *)malloc(len))
121 (snprintf(resbuf, len, "%s;%s", cmdbuf, envbuf) > 0)
123 dbg_printf("PATH: %s\n", resbuf);
126 SetEnvironmentVariable("PATH", resbuf)
204 free(resbuf);
  /external/elfutils/lib/
md5.h 81 in first 16 bytes following RESBUF. The result is always in little
85 IMPORTANT: On some systems it is required that RESBUF is correctly
87 extern void *md5_finish_ctx (struct md5_ctx *ctx, void *resbuf);
90 /* Put result from CTX in first 16 bytes following RESBUF. The result is
94 IMPORTANT: On some systems it is required that RESBUF is correctly
96 extern void *md5_read_ctx (const struct md5_ctx *ctx, void *resbuf);
sha1.h 76 in first 20 bytes following RESBUF. The result is always in little
80 IMPORTANT: On some systems it is required that RESBUF is correctly
82 extern void *sha1_finish_ctx (struct sha1_ctx *ctx, void *resbuf);
85 /* Put result from CTX in first 20 bytes following RESBUF. The result is
89 IMPORTANT: On some systems it is required that RESBUF is correctly
91 extern void *sha1_read_ctx (const struct sha1_ctx *ctx, void *resbuf);
md5.c 63 /* Put result from CTX in first 16 bytes following RESBUF. The result
66 IMPORTANT: On some systems it is required that RESBUF is correctly
69 md5_read_ctx (const struct md5_ctx *ctx, void *resbuf)
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;
90 prolog according to the standard and write the result to RESBUF.
92 IMPORTANT: On some systems it is required that RESBUF is correctl
    [all...]
sha1.c 63 /* Put result from CTX in first 20 bytes following RESBUF. The result
66 IMPORTANT: On some systems it is required that RESBUF is correctly
69 sha1_read_ctx (const struct sha1_ctx *ctx, void *resbuf)
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;
88 prolog according to the standard and write the result to RESBUF
    [all...]
  /external/libvncserver/common/
md5.h 118 in first 16 bytes following RESBUF. The result is always in little
122 IMPORTANT: On some systems it is required that RESBUF is correctly
124 extern void *__md5_finish_ctx (struct md5_ctx *ctx, void *resbuf) __THROW;
127 /* Put result from CTX in first 16 bytes following RESBUF. The result is
131 IMPORTANT: On some systems it is required that RESBUF is correctly
133 extern void *__md5_read_ctx (const struct md5_ctx *ctx, void *resbuf) __THROW;
md5.c 79 /* Put result from CTX in first 16 bytes following RESBUF. The result
82 IMPORTANT: On some systems it is required that RESBUF is correctly
85 md5_read_ctx (ctx, resbuf)
87 void *resbuf;
89 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);
90 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);
91 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);
92 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);
94 return resbuf;
98 prolog according to the standard and write the result to RESBUF
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
md5.h 121 in first 16 bytes following RESBUF. The result is always in little
125 IMPORTANT: On some systems it is required that RESBUF is correctly
127 extern void *md5_finish_ctx (struct md5_ctx *ctx, void *resbuf);
130 /* Put result from CTX in first 16 bytes following RESBUF. The result is
134 IMPORTANT: On some systems it is required that RESBUF is correctly
136 extern void *md5_read_ctx (const struct md5_ctx *ctx, void *resbuf);
  /toolchain/binutils/binutils-2.25/include/
md5.h 121 in first 16 bytes following RESBUF. The result is always in little
125 IMPORTANT: On some systems it is required that RESBUF is correctly
127 extern void *md5_finish_ctx (struct md5_ctx *ctx, void *resbuf);
130 /* Put result from CTX in first 16 bytes following RESBUF. The result is
134 IMPORTANT: On some systems it is required that RESBUF is correctly
136 extern void *md5_read_ctx (const struct md5_ctx *ctx, void *resbuf);
sha1.h 113 in first 20 bytes following RESBUF. The result is always in little
117 IMPORTANT: On some systems it is required that RESBUF be correctly
119 extern void *sha1_finish_ctx (struct sha1_ctx *ctx, void *resbuf);
122 /* Put result from CTX in first 20 bytes following RESBUF. The result is
126 IMPORTANT: On some systems it is required that RESBUF is correctly
128 extern void *sha1_read_ctx (const struct sha1_ctx *ctx, void *resbuf);
  /toolchain/binutils/binutils-2.25/libiberty/
sha1.c 70 /* Put result from CTX in first 20 bytes following RESBUF. The result
73 IMPORTANT: On some systems it is required that RESBUF is correctly
76 sha1_read_ctx (const struct sha1_ctx *ctx, void *resbuf)
78 ((sha1_uint32 *) resbuf)[0] = SWAP (ctx->A);
79 ((sha1_uint32 *) resbuf)[1] = SWAP (ctx->B);
80 ((sha1_uint32 *) resbuf)[2] = SWAP (ctx->C);
81 ((sha1_uint32 *) resbuf)[3] = SWAP (ctx->D);
82 ((sha1_uint32 *) resbuf)[4] = SWAP (ctx->E);
84 return resbuf;
88 prolog according to the standard and write the result to RESBUF
    [all...]
  /bionic/libc/kernel/uapi/linux/
i2o-dev.h 56 void __user * resbuf; member in struct:i2o_cmd_hrtlct
66 void __user * resbuf; member in struct:i2o_cmd_psetget
87 void __user * resbuf; member in struct:i2o_html
  /development/ndk/platforms/android-21/include/linux/
i2o-dev.h 56 void __user *resbuf; member in struct:i2o_cmd_hrtlct
66 void __user *resbuf; member in struct:i2o_cmd_psetget
87 void __user *resbuf; member in struct:i2o_html
  /external/kernel-headers/original/uapi/linux/
i2o-dev.h 60 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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
i2o-dev.h 60 void *resbuf; /* Buffer for result */ member in struct:i2o_cmd_hrtlct
69 void *resbuf; /* Result List buffer */ member in struct:i2o_cmd_psetget
88 void *resbuf; /* Buffer for reply HTML page */ member in struct:i2o_html
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
i2o-dev.h 60 void *resbuf; /* Buffer for result */ member in struct:i2o_cmd_hrtlct
69 void *resbuf; /* Result List buffer */ member in struct:i2o_cmd_psetget
88 void *resbuf; /* Buffer for reply HTML page */ member in struct:i2o_html
  /prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/linux/
i2o-dev.h 56 void __user *resbuf; member in struct:i2o_cmd_hrtlct
66 void __user *resbuf; member in struct:i2o_cmd_psetget
87 void __user *resbuf; member in struct:i2o_html
  /prebuilts/ndk/current/platforms/android-21/arch-arm64/usr/include/linux/
i2o-dev.h 56 void __user *resbuf; member in struct:i2o_cmd_hrtlct
66 void __user *resbuf; member in struct:i2o_cmd_psetget
87 void __user *resbuf; member in struct:i2o_html
  /prebuilts/ndk/current/platforms/android-21/arch-mips/usr/include/linux/
i2o-dev.h 56 void __user *resbuf; member in struct:i2o_cmd_hrtlct
66 void __user *resbuf; member in struct:i2o_cmd_psetget
87 void __user *resbuf; member in struct:i2o_html
  /prebuilts/ndk/current/platforms/android-21/arch-mips64/usr/include/linux/
i2o-dev.h 56 void __user *resbuf; member in struct:i2o_cmd_hrtlct
66 void __user *resbuf; member in struct:i2o_cmd_psetget
87 void __user *resbuf; member in struct:i2o_html
  /prebuilts/ndk/current/platforms/android-21/arch-x86/usr/include/linux/
i2o-dev.h 56 void __user *resbuf; member in struct:i2o_cmd_hrtlct
66 void __user *resbuf; member in struct:i2o_cmd_psetget
87 void __user *resbuf; member in struct:i2o_html
  /prebuilts/ndk/current/platforms/android-21/arch-x86_64/usr/include/linux/
i2o-dev.h 56 void __user *resbuf; member in struct:i2o_cmd_hrtlct
66 void __user *resbuf; member in struct:i2o_cmd_psetget
87 void __user *resbuf; member in struct:i2o_html
  /prebuilts/ndk/current/platforms/android-23/arch-arm/usr/include/linux/
i2o-dev.h 56 void __user *resbuf; member in struct:i2o_cmd_hrtlct
66 void __user *resbuf; member in struct:i2o_cmd_psetget
87 void __user *resbuf; member in struct:i2o_html
  /prebuilts/ndk/current/platforms/android-23/arch-arm64/usr/include/linux/
i2o-dev.h 56 void __user *resbuf; member in struct:i2o_cmd_hrtlct
66 void __user *resbuf; member in struct:i2o_cmd_psetget
87 void __user *resbuf; member in struct:i2o_html
  /prebuilts/ndk/current/platforms/android-23/arch-mips/usr/include/linux/
i2o-dev.h 56 void __user *resbuf; member in struct:i2o_cmd_hrtlct
66 void __user *resbuf; member in struct:i2o_cmd_psetget
87 void __user *resbuf; member in struct:i2o_html

Completed in 281 milliseconds

1 2