HomeSort by relevance Sort by last modified time
    Searched defs:state (Results 1 - 25 of 4604) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
RTCMediaSource.h 35 // The current state of the RTCMediaSource.
36 @property(nonatomic, assign, readonly) RTCSourceState state; variable
  /external/chromium_org/third_party/zlib/
gzclose.c 15 gz_statep state; local
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
gzclose.c 15 gz_statep state; local
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
  /external/qemu/distrib/zlib-1.2.8/
gzclose.c 15 gz_statep state; local
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
  /external/zlib/src/
gzclose.c 15 gz_statep state; local
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
  /external/chromium_org/chrome/service/
service_process_unittest.cc 20 ServiceProcessState state; local
22 EXPECT_TRUE(process.Initialize(&main_message_loop, command_line, &state));
  /external/chromium_org/cloud_print/service/
service_state_unittest.cc 16 ServiceState state; local
17 EXPECT_FALSE(state.IsValid());
21 ServiceState state; local
23 base::CollapseWhitespaceASCII(state.ToString(), true).c_str());
24 state.set_email("test@gmail.com");
25 state.set_proxy_id("proxy");
26 state.set_robot_email("robot@gmail.com");
27 state.set_robot_token("abc");
28 state.set_auth_token("token1");
29 state.set_xmpp_auth_token("token2")
39 ServiceState state; local
73 ServiceStateMock state; local
    [all...]
  /external/chromium_org/mojo/services/gles2/
command_buffer_type_conversions.cc 12 TypeConverter<CommandBufferStatePtr, gpu::CommandBuffer::State>::ConvertFrom(
13 const gpu::CommandBuffer::State& input) {
25 gpu::CommandBuffer::State
26 TypeConverter<CommandBufferStatePtr, gpu::CommandBuffer::State>::ConvertTo(
28 gpu::CommandBuffer::State state; local
29 state.num_entries = input->num_entries;
30 state.get_offset = input->get_offset;
31 state.put_offset = input->put_offset;
32 state.token = input->token
    [all...]
  /external/chromium_org/sync/engine/
backoff_delay_provider_unittest.cc 38 sessions::ModelNeutralState state; local
39 state.last_get_key_result = SYNC_SERVER_ERROR;
41 delay->GetInitialDelay(state).InSeconds());
43 state.last_get_key_result = UNSET;
44 state.last_download_updates_result = SERVER_RETURN_MIGRATION_DONE;
46 delay->GetInitialDelay(state).InSeconds());
48 state.last_download_updates_result = NETWORK_CONNECTION_UNAVAILABLE;
50 delay->GetInitialDelay(state).InSeconds());
52 state.last_download_updates_result = SERVER_RETURN_TRANSIENT_ERROR;
54 delay->GetInitialDelay(state).InSeconds())
88 sessions::ModelNeutralState state; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/qunit/test/
test.js 31 var state; variable
35 state = true;
56 state = 'fail';
60 equal(state, "done", "Test teardown.");
68 state = "done";
111 state = "done";
120 state = "done";
  /external/chromium_org/v8/src/base/
once.cc 19 AtomicWord state = Acquire_Load(once); local
21 if (state == ONCE_STATE_DONE) {
30 // First, try to change the state from UNINITIALIZED to EXECUTING_FUNCTION
32 state = Acquire_CompareAndSwap(
34 if (state == ONCE_STATE_UNINITIALIZED) {
42 while (state == ONCE_STATE_EXECUTING_FUNCTION) {
48 state = Acquire_Load(once);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1639-2.js 33 function sendCommand(state, cmd) {
34 // Get the debug command processor in paused state.
35 var dcp = state.debugCommandProcessor(false);
40 var state = 0; variable
52 switch (state) {
54 state = 1;
  /bionic/libc/bionic/
c32rtomb.cpp 37 mbstate_t* state = (ps == NULL) ? &__private_state : ps; local
41 return reset_and_return(1, state);
46 // shift state. Since shift states are not supported, only the null byte is
50 reset_and_return(1, state);
53 if (!mbsinit(state)) {
54 return reset_and_return_illegal(EILSEQ, state);
  /external/chromium_org/content/browser/ssl/
ssl_host_state_unittest.cc 97 SSLHostState state; local
99 EXPECT_FALSE(state.DidHostRunInsecureContent("www.google.com", 42));
100 EXPECT_FALSE(state.DidHostRunInsecureContent("www.google.com", 191));
101 EXPECT_FALSE(state.DidHostRunInsecureContent("example.com", 42));
103 state.HostRanInsecureContent("www.google.com", 42);
105 EXPECT_TRUE(state.DidHostRunInsecureContent("www.google.com", 42));
106 EXPECT_FALSE(state.DidHostRunInsecureContent("www.google.com", 191));
107 EXPECT_FALSE(state.DidHostRunInsecureContent("example.com", 42));
109 state.HostRanInsecureContent("example.com", 42);
111 EXPECT_TRUE(state.DidHostRunInsecureContent("www.google.com", 42))
121 SSLHostState state; local
    [all...]
  /external/chromium_org/third_party/libsrtp/srtp/crypto/include/
aes_cbc.h 53 v128_t state; /* cipher chaining state */ member in struct:__anon16451
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
once.cc 66 internal::AtomicWord state = internal::Acquire_Load(once); local
68 if (state == ONCE_STATE_DONE) {
76 // First, try to change the state from UNINITIALIZED to EXECUTING_CLOSURE
78 state = internal::Acquire_CompareAndSwap(
80 if (state == ONCE_STATE_UNINITIALIZED) {
88 while (state == ONCE_STATE_EXECUTING_CLOSURE) {
91 state = internal::Acquire_Load(once);
  /external/chromium_org/third_party/smhasher/src/
sha1.h 10 uint32_t state[5]; member in struct:SHA1_CTX
  /external/chromium_org/v8/test/webkit/
parseInt.js 73 var state; variable
74 var throwingRadix = { valueOf: function(){ state = "throwingRadix"; throw null; } };
75 var throwingString = { toString: function(){ state = "throwingString"; throw null; } };
76 shouldBe("state = null; try { parseInt('123', throwingRadix); } catch (e) {} state;", '"throwingRadix"');
77 shouldBe("state = null; try { parseInt(throwingString, throwingRadix); } catch (e) {} state;", '"throwingString"');
  /external/fio/crc/
sha256.h 6 uint32_t state[8]; member in struct:fio_sha256_ctx
  /external/jmdns/src/javax/jmdns/impl/tasks/state/
package-info.java 1 package javax.jmdns.impl.tasks.state;
  /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
nullptr.pass.cpp 30 int state() const {return state_;} function in class:Deleter
44 assert(p.get_deleter().state() == 5);
  /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
nullptr.pass.cpp 30 int state() const {return state_;} function in class:Deleter
44 assert(p.get_deleter().state() == 5);
  /external/srtp/crypto/include/
aes_cbc.h 18 v128_t state; /* cipher chaining state */ member in struct:__anon34904
  /external/wpa_supplicant_8/src/crypto/
sha1_i.h 13 u32 state[5]; member in struct:SHA1Context
21 void SHA1Transform(u32 state[5], const unsigned char buffer[64]);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
nullptr.pass.cpp 30 int state() const {return state_;} function in class:Deleter
44 assert(p.get_deleter().state() == 5);

Completed in 797 milliseconds

1 2 3 4 5 6 7 8 91011>>