HomeSort by relevance Sort by last modified time
    Searched defs:out_bytes (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/remoting/protocol/
auth_util.cc 60 unsigned char out_bytes[kAuthDigestLength]; local
61 if (!response.Sign(shared_secret, out_bytes, kAuthDigestLength)) {
66 return std::string(out_bytes, out_bytes + kAuthDigestLength);
authentication_method.cc 67 unsigned char out_bytes[kSharedSecretHashLength]; local
68 if (!response.Sign(shared_secret, out_bytes, sizeof(out_bytes))) {
72 return std::string(out_bytes, out_bytes + sizeof(out_bytes));
  /external/chromium_org/third_party/openssl/openssl/crypto/chacha/
chachatest.c 155 unsigned char *expected, *out_bytes, *zero_bytes, *out, *zeros; local
169 out_bytes = malloc(len+16);
172 out = misalign(out_bytes);
205 free(out_bytes);
  /external/qemu/slirp/
if.h 47 u_int out_bytes; /* Output bytes */ member in struct:slirp_ifstats
  /external/qemu/slirp-android/
if.h 47 u_int out_bytes; /* Output bytes */ member in struct:slirp_ifstats
  /external/chromium_org/chrome/browser/chromeos/login/managed/
supervised_user_authentication.cc 310 unsigned char out_bytes[kSignatureLength]; local
311 if (!hmac.Sign(buffer, out_bytes, sizeof(out_bytes)))
314 std::string raw_result(out_bytes, out_bytes + sizeof(out_bytes));
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
event_test.cc 194 int out_bytes = 0; local
195 EXPECT_EQ(0, pipe.Write_Locked(hello, sizeof(hello), &out_bytes));
196 EXPECT_EQ(sizeof(hello), out_bytes); local
203 int out_bytes = -1; local
204 EXPECT_EQ(0, pipe.Read_Locked(tmp, sizeof(tmp), &out_bytes));
205 EXPECT_EQ(sizeof(hello), out_bytes); local
  /system/extras/sound/
playwav.c 32 uint32_t out_bytes; member in struct:msm_audio_stats
83 fprintf(stderr,"%10d\n", stats.out_bytes);
  /external/chromium_org/ipc/
ipc_channel_posix.cc 399 const char* out_bytes = reinterpret_cast<const char*>(msg->data()) + local
403 struct iovec iov = {const_cast<char*>(out_bytes), amt_to_write};
468 bytes_written = HANDLE_EINTR(write(pipe_, out_bytes, amt_to_write));
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/test/
audio_processing_unittest.cc 1562 scoped_ptr<uint8_t[]> out_bytes; local
    [all...]
  /system/core/adb/
sysdeps_win32.c 47 DWORD out_bytes; local
49 if ( !ReadFile( file, data, file_size, &out_bytes, NULL ) ||
50 out_bytes != file_size )
    [all...]
  /external/libpng/contrib/tools/
pngfix.c 2286 png_uint_32 out_bytes; local
    [all...]

Completed in 496 milliseconds