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

1 2

  /external/e2fsprogs/e2fsck/
argv_parse.h 8 * int argv_parse(char *in_buf, int *ret_argc, char ***ret_argv)
42 extern int argv_parse(char *in_buf, int *ret_argc, char ***ret_argv);
argv_parse.c 45 int argv_parse(char *in_buf, int *ret_argc, char ***ret_argv)
52 buf = malloc(strlen(in_buf)+1);
58 for (cp = in_buf; (ch = *cp); cp++) {
  /system/extras/libublock/
ublock.c 36 char *in_buf; member in struct:ublock_ctx
159 const char *in_buf; local
170 in_buf = (const char*)(in_h + 1);
175 out_h->status = (ub_ctx->ops->write)(in_buf, in_h->length, in_h->offset);
185 const void *in_buf; local
203 in_buf = in_h + 1;
231 result = (handle_fn)(ub_ctx, in_buf, in_buf_len, out_buf, &out_buf_len);
238 void *in_buf, size_t in_size,
246 assert(in_buf);
249 in_len = read(ub_ctx->fd, in_buf, in_size)
343 char *in_buf, *out_buf; local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_tnc.c 19 struct wpabuf *in_buf; member in struct:eap_tnc_data
58 wpabuf_free(data->in_buf);
147 if (len > wpabuf_tailroom(data->in_buf)) {
153 wpabuf_put_data(data->in_buf, buf, len);
156 (unsigned long) wpabuf_tailroom(data->in_buf));
169 if (data->in_buf == NULL && !(flags & EAP_TNC_FLAGS_LENGTH_INCLUDED)) {
176 if (data->in_buf == NULL) {
178 data->in_buf = wpabuf_alloc(message_length);
179 if (data->in_buf == NULL) {
185 wpabuf_put_data(data->in_buf, buf, len)
    [all...]
eap_ikev2.c 20 struct wpabuf *in_buf; member in struct:eap_ikev2_data
108 wpabuf_free(data->in_buf);
273 if (len > wpabuf_tailroom(data->in_buf)) {
279 wpabuf_put_data(data->in_buf, buf, len);
282 (unsigned long) wpabuf_tailroom(data->in_buf));
295 if (data->in_buf == NULL && !(flags & IKEV2_FLAGS_LENGTH_INCLUDED)) {
302 if (data->in_buf == NULL) {
304 data->in_buf = wpabuf_alloc(message_length);
305 if (data->in_buf == NULL) {
311 wpabuf_put_data(data->in_buf, buf, len)
    [all...]
eap_wsc.c 22 struct wpabuf *in_buf; member in struct:eap_wsc_data
266 wpabuf_free(data->in_buf);
353 if (len > wpabuf_tailroom(data->in_buf)) {
359 wpabuf_put_data(data->in_buf, buf, len);
362 (unsigned long) wpabuf_tailroom(data->in_buf));
375 if (data->in_buf == NULL && !(flags & WSC_FLAGS_LF)) {
382 if (data->in_buf == NULL) {
384 data->in_buf = wpabuf_alloc(message_length);
385 if (data->in_buf == NULL) {
392 wpabuf_put_data(data->in_buf, buf, len)
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_ikev2.c 20 struct wpabuf *in_buf; member in struct:eap_ikev2_data
127 wpabuf_free(data->in_buf);
283 if (len > wpabuf_tailroom(data->in_buf)) {
289 wpabuf_put_data(data->in_buf, buf, len);
292 (unsigned long) wpabuf_tailroom(data->in_buf));
303 if (data->in_buf == NULL && !(flags & IKEV2_FLAGS_LENGTH_INCLUDED)) {
309 if (data->in_buf == NULL) {
311 data->in_buf = wpabuf_alloc(message_length);
312 if (data->in_buf == NULL) {
317 wpabuf_put_data(data->in_buf, buf, len)
    [all...]
eap_server_tnc.c 23 struct wpabuf *in_buf; member in struct:eap_tnc_data
97 wpabuf_free(data->in_buf);
401 if (len > wpabuf_tailroom(data->in_buf)) {
407 wpabuf_put_data(data->in_buf, buf, len);
410 (unsigned long) wpabuf_tailroom(data->in_buf));
421 if (data->in_buf == NULL && !(flags & EAP_TNC_FLAGS_LENGTH_INCLUDED)) {
427 if (data->in_buf == NULL) {
429 data->in_buf = wpabuf_alloc(message_length);
430 if (data->in_buf == NULL) {
435 wpabuf_put_data(data->in_buf, buf, len)
    [all...]
eap_server_wsc.c 22 struct wpabuf *in_buf; member in struct:eap_wsc_data
158 wpabuf_free(data->in_buf);
302 if (len > wpabuf_tailroom(data->in_buf)) {
308 wpabuf_put_data(data->in_buf, buf, len);
311 (unsigned long) wpabuf_tailroom(data->in_buf));
322 if (data->in_buf == NULL && !(flags & WSC_FLAGS_LF)) {
328 if (data->in_buf == NULL) {
330 data->in_buf = wpabuf_alloc(message_length);
331 if (data->in_buf == NULL) {
337 wpabuf_put_data(data->in_buf, buf, len)
    [all...]
  /system/media/audio_utils/
resampler.c 35 int16_t *in_buf; // input buffer member in struct:resampler
99 // make sure that the number of frames present in rsmp->in_buf (rsmp->frames_in) is at
104 rsmp->in_buf = (int16_t *)realloc(rsmp->in_buf,
113 memcpy(rsmp->in_buf + rsmp->frames_in * rsmp->channel_count,
125 rsmp->in_buf,
131 rsmp->in_buf,
143 memmove(rsmp->in_buf,
144 rsmp->in_buf + inFrames * rsmp->channel_count,
234 rsmp->in_buf = NULL
    [all...]
  /external/chromium/net/http/
http_auth_handler_ntlm.cc 49 // TODO(wtc): See if we can use char* instead of void* for in_buf and
52 const void* in_buf;
76 in_buf = NULL;
86 in_buf = decoded_auth_data.data();
89 int rv = GetNextToken(in_buf, in_buf_len, &out_buf, &out_buf_len);
http_auth_handler_ntlm_portable.cc 391 static int ParseType2Msg(const void* in_buf, uint32 in_len, Type2Msg* msg) {
392 // Make sure in_buf is long enough to contain a meaningful type2 msg.
404 const uint8* cursor = (const uint8*) in_buf;
419 uint32 offset = ReadUint32(cursor); // get offset from in_buf
426 msg->target = ((const uint8*) in_buf) + offset;
459 const void* in_buf,
463 // in_buf contains Type-2 msg (the challenge) from server.
468 rv = ParseType2Msg(in_buf, in_len, &msg);
  /external/chromium_org/net/http/
http_auth_handler_ntlm.cc 45 // TODO(wtc): See if we can use char* instead of void* for in_buf and
48 const void* in_buf;
72 in_buf = NULL;
82 in_buf = decoded_auth_data.data();
85 int rv = GetNextToken(in_buf, in_buf_len, &out_buf, &out_buf_len);
http_auth_handler_ntlm_portable.cc 378 static int ParseType2Msg(const void* in_buf, uint32 in_len, Type2Msg* msg) {
379 // Make sure in_buf is long enough to contain a meaningful type2 msg.
391 const uint8* cursor = (const uint8*) in_buf;
406 uint32 offset = ReadUint32(cursor); // get offset from in_buf
413 msg->target = ((const uint8*) in_buf) + offset;
446 const void* in_buf,
450 // in_buf contains Type-2 msg (the challenge) from server.
455 rv = ParseType2Msg(in_buf, in_len, &msg);
  /external/chromium_org/net/base/
file_stream_context_posix.cc 83 int FileStream::Context::ReadAsync(IOBuffer* in_buf,
88 scoped_refptr<IOBuffer> buf = in_buf;
103 int FileStream::Context::ReadSync(char* in_buf, int buf_len) {
104 scoped_refptr<IOBuffer> buf = new WrappedIOBuffer(in_buf);
110 int FileStream::Context::WriteAsync(IOBuffer* in_buf,
115 scoped_refptr<IOBuffer> buf = in_buf;
130 int FileStream::Context::WriteSync(const char* in_buf, int buf_len) {
131 scoped_refptr<IOBuffer> buf = new WrappedIOBuffer(in_buf);
  /external/chromium_org/content/renderer/pepper/
ppb_video_decoder_impl.cc 186 PP_PictureBuffer_Dev in_buf = buffers[i]; local
187 DCHECK_GE(in_buf.id, 0);
189 in_buf.id,
190 gfx::Size(in_buf.size.width, in_buf.size.height),
191 in_buf.texture_id);
194 in_buf.size.height);
  /packages/apps/Gallery2/jni_jpegstream/src/
jpegstream.cpp 227 jbyte* in_buf = (jbyte*) env->GetByteArrayElements(inBuffer, 0); local
228 if (env->ExceptionCheck() || in_buf == NULL) {
232 int8_t* in_bytes = static_cast<int8_t*>(in_buf);
242 env->ReleaseByteArrayElements(inBuffer, in_buf, JNI_ABORT);
253 jbyte* in_buf = (jbyte*) env->GetByteArrayElements(inBuffer, 0); local
254 if (env->ExceptionCheck() || in_buf == NULL) {
257 int8_t* in_bytes = static_cast<int8_t*>(in_buf);
269 env->ReleaseByteArrayElements(inBuffer, in_buf, JNI_ABORT);
271 env->ReleaseByteArrayElements(inBuffer, in_buf, JNI_COMMIT);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
wb_vad.h 74 Word16 wb_vad(VadVars * st, Word16 in_buf[]);
  /external/chromium/third_party/libjingle/source/talk/base/
schanneladapter.cc 339 CSecBufferBundle<4> in_buf; local
340 in_buf[0].BufferType = SECBUFFER_DATA;
341 in_buf[0].cbBuffer = static_cast<unsigned long>(inbuf.size());
342 in_buf[0].pvBuffer = &inbuf[0];
344 //DescribeBuffers(LS_VERBOSE, "Decrypt In ", in_buf.desc());
345 SECURITY_STATUS status = DecryptMessage(&impl_->ctx, in_buf.desc(), 0, 0);
346 //DescribeBuffers(LS_VERBOSE, "Decrypt Out ", in_buf.desc());
352 for (size_t i=0; i<in_buf.desc()->cBuffers; ++i) {
353 if (in_buf[i].BufferType == SECBUFFER_DATA) {
354 data_len += in_buf[i].cbBuffer
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
schanneladapter.cc 336 CSecBufferBundle<4> in_buf; local
337 in_buf[0].BufferType = SECBUFFER_DATA;
338 in_buf[0].cbBuffer = static_cast<unsigned long>(inbuf.size());
339 in_buf[0].pvBuffer = &inbuf[0];
341 //DescribeBuffers(LS_VERBOSE, "Decrypt In ", in_buf.desc());
342 SECURITY_STATUS status = DecryptMessage(&impl_->ctx, in_buf.desc(), 0, 0);
343 //DescribeBuffers(LS_VERBOSE, "Decrypt Out ", in_buf.desc());
349 for (size_t i=0; i<in_buf.desc()->cBuffers; ++i) {
350 if (in_buf[i].BufferType == SECBUFFER_DATA) {
351 data_len += in_buf[i].cbBuffer
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
vad1.h 182 Word16 in_buf[], /* i : samples of the input frame
  /external/chromium_org/net/disk_cache/simple/
simple_synchronous_entry.h 107 net::IOBuffer* in_buf,
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
wb_vad.c 761 Word16 in_buf[] /* i : samples of the input frame */
773 L_temp = L_mac(L_temp, in_buf[i], in_buf[i]);
788 filter_bank(st, in_buf, level);
  /external/openssh/
umac.c 189 UINT8 in_buf[AES_BLOCK_LEN] = {0}; local
195 in_buf[AES_BLOCK_LEN-9] = ndx;
196 in_buf[AES_BLOCK_LEN-1] = i = 1;
199 aes_encryption(in_buf, out_buf, key);
201 in_buf[AES_BLOCK_LEN-1] = ++i;
206 aes_encryption(in_buf, out_buf, key);
    [all...]
  /external/qemu/block/
qcow2.h 195 uint8_t *out_buf, const uint8_t *in_buf,

Completed in 425 milliseconds

1 2