HomeSort by relevance Sort by last modified time
    Searched defs:status (Results 826 - 850 of 4870) sorted by null

<<31323334353637383940>>

  /external/chromium_org/third_party/leveldatabase/src/table/
merger.cc 124 virtual Status status() const { function in class:leveldb::__anon17086::MergingIterator
125 Status status; local
127 status = children_[i].status();
128 if (!status.ok()) {
132 return status;
  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
presencepushtask.cc 103 // Status code=110 or 100 is not guaranteed to be present, so we
104 // only check the item element and Muc join status.
136 const XmlElement * status = stanza->FirstNamed(QN_STATUS); local
137 if (status != NULL) {
138 s->set_status(status->BodyText());
140 // Truncate status messages longer than 300 bytes
141 if (s->status().length() > 300) {
145 while (!IsUtf8FirstByte(s->status()[len]) && len > 0) {
148 std::string truncated(s->status(), 0, len);
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
peer_channel.h 65 void QueueResponse(const std::string& status, const std::string& content_type,
72 std::string status, content_type, extra_headers, data; member in struct:ChannelMember::QueuedResponse
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
carbonvideorenderer.cc 56 OSStatus status = noErr; local
63 return status;
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
presencereceivetask.cc 78 PresenceStatus status; local
79 DecodeStatus(from, stanza, &status);
80 PresenceUpdate(status);
95 // Truncate status messages longer than 300 bytes
96 if (presence_status->status().length() > 300) {
100 while (!IsUtf8FirstByte(presence_status->status()[len]) && len > 0) {
103 std::string truncated(presence_status->status(), 0, len);
  /external/chromium_org/third_party/libsrtp/srtp/crypto/cipher/
cipher.c 87 err_status_t status; local
110 status = cipher_type_alloc(ct, &c, test_case->key_length_octets);
111 if (status)
112 return status;
120 status = cipher_init(c, test_case->key, direction_encrypt);
121 if (status) {
123 return status;
139 status = cipher_set_iv(c, test_case->idx);
140 if (status) {
142 return status;
    [all...]
  /external/chromium_org/third_party/libsrtp/srtp/crypto/math/
stat.c 240 err_status_t status; local
255 status = get_rand_bytes(buffer, RAND_SRC_BUF_OCTETS);
256 if (status) {
257 debug_print(mod_stat, "couldn't get rand bytes: %d",status);
258 return status;
  /external/chromium_org/third_party/libsrtp/srtp/test/
rdbx_driver.c 72 err_status_t status; local
104 status = test_replay_dbx(1 << 12, 128);
105 if (status) {
113 status = test_replay_dbx(1 << 12, 1024);
114 if (status) {
185 err_status_t status; local
189 status = rdbx_check(rdbx, delta);
190 if (status == err_status_ok) {
228 err_status_t status; local
231 status = rdbx_init(&rdbx, ws)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/
webmdec.cc 133 long status = 0; local
136 status = cluster->GetFirst(block_entry);
144 status = cluster->GetFirst(block_entry);
150 status = cluster->GetNext(block_entry, block_entry);
157 if (status) {
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/test/
test_fft32.c 122 OMXResult status; local
128 status = omxSP_FFTGetBufSize_C_SC32(fft_log_size, &fft_spec_buffer_size);
134 status = omxSP_FFTInit_C_SC32(fft_fwd_spec, fft_log_size);
135 if (status) {
136 fprintf(stderr, "Failed to init forward FFT: status = %d\n", status);
157 status = omxSP_FFTFwd_CToC_SC32_Sfs(x, y, fft_fwd_spec, 0);
158 if (status) {
159 fprintf(stderr, "Forward FFT failed: status = %d\n", status);
191 OMXResult status; local
    [all...]
test_float_fft.c 112 OMXResult status; local
118 status = omxSP_FFTGetBufSize_C_FC32(fft_log_size, &fft_spec_buffer_size);
124 status = omxSP_FFTInit_C_FC32(fft_fwd_spec, fft_log_size);
125 if (status) {
127 "Failed to init forward FFT: status = %d, order %d \n",
128 status, fft_log_size);
155 status = ForwardFFT(x, y, fft_fwd_spec);
157 if (status != OMX_Sts_NoErr) {
158 fprintf(stderr, "Forward FFT failed: status = %d\n", status);
187 OMXResult status; local
    [all...]
test_rfft16_s32.c 106 OMXResult status; local
112 status = omxSP_FFTGetBufSize_R_S16S32(fft_log_size, &fft_spec_buffer_size);
118 status = omxSP_FFTInit_R_S16S32(fft_fwd_spec, fft_log_size);
119 if (status) {
120 fprintf(stderr, "Failed to init forward FFT: status = %d\n", status);
141 status = omxSP_FFTFwd_RToCCS_S16S32_Sfs(x, (OMX_S32*) y, fft_fwd_spec, 0);
142 if (status) {
143 fprintf(stderr, "Forward FFT failed: status = %d\n", status);
175 OMXResult status; local
    [all...]
test_rfft32.c 110 OMXResult status; local
116 status = omxSP_FFTGetBufSize_R_S32(fft_log_size, &fft_spec_buffer_size);
122 status = omxSP_FFTInit_R_S32(pFwdSpec, fft_log_size);
123 if (status) {
124 fprintf(stderr, "Failed to init forward FFT: status = %d\n", status);
145 status = omxSP_FFTFwd_RToCCS_S32_Sfs(x, (OMX_S32*) y, pFwdSpec, 0);
146 if (status) {
147 fprintf(stderr, "Forward FFT failed: status = %d\n", status);
179 OMXResult status; local
    [all...]
  /external/chromium_org/third_party/opus/src/silk/fixed/
solve_LS_FIX.c 123 opus_int i, j, k, status, loop_count; local
131 status = 1;
133 for( loop_count = 0; loop_count < M && status == 1; loop_count++ ) {
134 status = 0;
150 status = 1;
185 silk_assert( status == 0 );
  /external/chromium_org/third_party/re2/re2/testing/
parse_test.cc 205 RegexpStatus status; local
210 re[i] = Regexp::Parse(tests[i].regexp, f, &status);
212 << status.Text();
383 RegexpStatus status; local
388 Regexp* re = Regexp::Parse(tests[i].regexp, f, &status);
389 CHECK(re != NULL) << " " << tests[i].regexp << " " << status.Text();
403 Regexp* nre = Regexp::Parse(t, Regexp::MatchNL | Regexp::PerlX, &status);
404 CHECK(nre != NULL) << " reparse " << t << " " << status.Text();
419 RegexpStatus status; local
422 re = Regexp::Parse("test(?P<name", Regexp::LikePerl, &status);
    [all...]
  /external/chromium_org/third_party/skia/experimental/benchtools/
rebase.py 151 status = True
163 status = False
167 return status
197 status = True variable
203 status = False variable
206 return status
  /external/chromium_org/third_party/skia/samplecode/
SampleFontCache.cpp 90 int status; local
92 status = pthread_create(&fMThreads[i], NULL, measure_proc, NULL);
93 SkASSERT(0 == status);
98 status = pthread_create(&fDThreads[i], NULL, draw_proc, &fBitmaps[i]);
99 SkASSERT(0 == status);
108 int status = pthread_join(fMThreads[i], &ret); local
109 SkASSERT(0 == status);
110 status = pthread_join(fDThreads[i], &ret);
111 SkASSERT(0 == status);
  /external/chromium_org/third_party/skia/src/ports/
SkOSFile_stdio.cpp 125 struct stat status; local
126 if (0 != stat(path, &status)) {
129 return SkToBool(status.st_mode & S_IFDIR);
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_userspace.c 190 ULONG status, size; local
198 status = GetAdaptersAddresses(AF_UNSPEC, 0, NULL, NULL, &size);
199 if (status != ERROR_BUFFER_OVERFLOW) {
203 status = GetAdaptersAddresses(AF_UNSPEC, 0, NULL, addresses, &size);
204 if (status == ERROR_SUCCESS) {
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g711/test/
testG711.cc 29 short k, rlen, status = 0; local
35 status = 1;
38 return status;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g722/test/
testG722.cc 34 short k, rlen, status = 0; local
40 status = 1;
43 return status;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
Channel.cc 26 int32_t status; local
118 status = _receiverACM->IncomingPacket(_payloadData, payloadDataSize, rtpInfo);
120 return status;
  /external/chromium_org/tools/chrome_proxy/integration_tests/
chrome_proxy_metrics_unittest.py 70 status=307)) variable
  /external/chromium_org/v8/test/cctest/
test-fast-dtoa.cc 61 int status; local
64 status = FastDtoa(min_double, FAST_DTOA_SHORTEST, 0,
66 CHECK(status);
71 status = FastDtoa(max_double, FAST_DTOA_SHORTEST, 0,
73 CHECK(status);
77 status = FastDtoa(4294967272.0, FAST_DTOA_SHORTEST, 0,
79 CHECK(status);
83 status = FastDtoa(4.1855804968213567e298, FAST_DTOA_SHORTEST, 0,
85 CHECK(status);
89 status = FastDtoa(5.5626846462680035e-309, FAST_DTOA_SHORTEST, 0
131 int status; local
230 bool status; local
259 bool status; local
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-70066.js 37 var status;
38 with ({}) { status = delete value; }
39 return value + ":" + status;
52 var status = f(); variable
53 return value + ":" + status;
62 var status;
63 with ({}) { status = delete value; }
64 return value + ":" + status;
76 var status = f(); variable
77 return value + ":" + status;
98 var status = f(); variable
    [all...]

Completed in 2103 milliseconds

<<31323334353637383940>>