/hardware/ti/omap4xxx/ |
stacktrace.c | 51 stack_crawl_state_t* state = (stack_crawl_state_t*)arg; local 52 if (state->count) { 55 state->addrs[0] = ip; 56 state->addrs++; 57 state->count--; 70 stack_crawl_state_t state; local 71 state.count = max_entries; 72 state.addrs = (intptr_t*)addrs; 73 _Unwind_Backtrace(trace_function, (void*)&state); 74 return max_entries - state.count [all...] |
/packages/apps/Mms/src/com/android/mms/transaction/ |
TransactionState.java | 25 * State into an intent, it should implement Parcelable interface. 50 * To represent the current state(or the result of processing) to the 51 * ones who wants to know the state. 53 * @return Current state of the Transaction. 60 * To set the state of transaction. This method is only invoked by 63 * @param state The current state of transaction. 65 synchronized void setState(int state) { 66 if ((state < INITIALIZED) && (state > FAILED)) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/ |
radeonsi_pm4.h | 53 /* BO's referenced by this state */ 63 void si_pm4_cmd_begin(struct si_pm4_state *state, unsigned opcode); 64 void si_pm4_cmd_add(struct si_pm4_state *state, uint32_t dw); 65 void si_pm4_cmd_end(struct si_pm4_state *state, bool predicate); 67 void si_pm4_set_reg(struct si_pm4_state *state, unsigned reg, uint32_t val); 68 void si_pm4_add_bo(struct si_pm4_state *state, 72 void si_pm4_sh_data_begin(struct si_pm4_state *state); 73 void si_pm4_sh_data_add(struct si_pm4_state *state, uint32_t dw); 74 void si_pm4_sh_data_end(struct si_pm4_state *state, unsigned reg); 76 void si_pm4_inval_shader_cache(struct si_pm4_state *state); [all...] |
/external/mesa3d/src/gallium/drivers/radeonsi/ |
radeonsi_pm4.h | 53 /* BO's referenced by this state */ 63 void si_pm4_cmd_begin(struct si_pm4_state *state, unsigned opcode); 64 void si_pm4_cmd_add(struct si_pm4_state *state, uint32_t dw); 65 void si_pm4_cmd_end(struct si_pm4_state *state, bool predicate); 67 void si_pm4_set_reg(struct si_pm4_state *state, unsigned reg, uint32_t val); 68 void si_pm4_add_bo(struct si_pm4_state *state, 72 void si_pm4_sh_data_begin(struct si_pm4_state *state); 73 void si_pm4_sh_data_add(struct si_pm4_state *state, uint32_t dw); 74 void si_pm4_sh_data_end(struct si_pm4_state *state, unsigned reg); 76 void si_pm4_inval_shader_cache(struct si_pm4_state *state); [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()) 84 sessions::ModelNeutralState state; local [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/app/state/ |
AppStateManager.java | 33 package com.jme3.app.state;
45 * {@link AppState#stateAttached(com.jme3.app.state.AppStateManager) } and
46 * {@link AppState#stateDetached(com.jme3.app.state.AppStateManager) } methods
51 * <li>stateAttached() : called when the state is attached on the thread on which
52 * the state was attached.
55 * <li>stateDetached() : called when the state is attached on the thread on which
56 * the state was detached. This is not necessarily on the
60 * after the state has been detached or when the application is
117 * Attach a state to the AppStateManager, the same state cannot be attached [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
program_parse_extra.c | 37 _mesa_parse_instruction_suffix(const struct asm_parser_state *state, 50 if (state->option.NV_fragment) { 72 if (state->option.NV_fragment) { 83 if (state->mode == ARB_fragment) { 152 _mesa_ARBvp_parse_option(struct asm_parser_state *state, const char *option) 155 state->option.PositionInvariant = 1; 164 _mesa_ARBfp_parse_option(struct asm_parser_state *state, const char *option) 180 if (state->option.Fog == OPTION_NONE) { 182 state->option.Fog = OPTION_FOG_EXP; 185 state->option.Fog = OPTION_FOG_EXP2 [all...] |
/external/mesa3d/src/mesa/program/ |
program_parse_extra.c | 37 _mesa_parse_instruction_suffix(const struct asm_parser_state *state, 50 if (state->option.NV_fragment) { 72 if (state->option.NV_fragment) { 83 if (state->mode == ARB_fragment) { 152 _mesa_ARBvp_parse_option(struct asm_parser_state *state, const char *option) 155 state->option.PositionInvariant = 1; 164 _mesa_ARBfp_parse_option(struct asm_parser_state *state, const char *option) 180 if (state->option.Fog == OPTION_NONE) { 182 state->option.Fog = OPTION_FOG_EXP; 185 state->option.Fog = OPTION_FOG_EXP2 [all...] |
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/ |
http_header_util.py | 61 def peek(state, pos=0): 64 if state.head + pos >= len(state.data): 67 return state.data[state.head + pos] 70 def consume(state, amount=1): 75 if state.head + amount > len(state.data): 78 result = state.data[state.head:state.head + amount [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/ |
http_header_util.py | 61 def peek(state, pos=0): 64 if state.head + pos >= len(state.data): 67 return state.data[state.head + pos] 70 def consume(state, amount=1): 75 if state.head + amount > len(state.data): 78 result = state.data[state.head:state.head + amount [all...] |
/external/smack/src/org/jivesoftware/smackx/packet/ |
ChatStateExtension.java | 29 * Represents a chat state which is an extension to message packets which is used to indicate
37 private ChatState state;
field in class:ChatStateExtension 40 * Default constructor. The argument provided is the state that the extension will represent.
42 * @param state the state that the extension represents.
44 public ChatStateExtension(ChatState state) {
45 this.state = state;
49 return state.name();
63 ChatState state;
local [all...] |
/external/dhcpcd/ |
if-pref.c | 41 if (si->state && !ti->state) 43 if (!si->state && ti->state) 45 if (!si->state && !ti->state) 48 if (si->state->new && !ti->state->new) 50 if (!si->state->new && ti->state->new [all...] |
/external/wpa_supplicant_8/src/utils/ |
state_machine.h | 2 * wpa_supplicant/hostapd - State machine definitions 9 * implement a state machine. In addition to including this header file, each 10 * file implementing a state machine must define STATE_MACHINE_DATA to be the 11 * data structure including state variables (enum machine_state, 14 * a group of state machines with shared data structure, STATE_MACHINE_ADDR 16 * SM_ENTRY_M macro can be used to define similar group of state machines 24 * SM_STATE - Declaration of a state machine function 25 * @machine: State machine name 26 * @state: State machine stat [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_dump.h | 99 const struct pipe_rasterizer_state *state); 103 const struct pipe_poly_stipple *state); 107 const struct pipe_viewport_state *state); 111 const struct pipe_scissor_state *state); 115 const struct pipe_clip_state *state); 119 const struct pipe_shader_state *state); 123 const struct pipe_depth_stencil_alpha_state *state); 127 const struct pipe_rt_blend_state *state); 131 const struct pipe_blend_state *state); 135 const struct pipe_blend_color *state); [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_dump.h | 99 const struct pipe_rasterizer_state *state); 103 const struct pipe_poly_stipple *state); 107 const struct pipe_viewport_state *state); 111 const struct pipe_scissor_state *state); 115 const struct pipe_clip_state *state); 119 const struct pipe_shader_state *state); 123 const struct pipe_depth_stencil_alpha_state *state); 127 const struct pipe_rt_blend_state *state); 131 const struct pipe_blend_state *state); 135 const struct pipe_blend_color *state); [all...] |
/external/chromium_org/chrome/installer/util/ |
callback_work_item_unittest.cc | 33 // A callback that sets |state| according to whether it is rolling forward or 35 bool TestForwardBackwardCallback(TestCallbackState* state, 37 *state = work_item.IsRollback() ? TCS_CALLED_ROLLBACK : TCS_CALLED_FORWARD; 45 TestCallbackState state = TCS_UNDEFINED; local 47 CallbackWorkItem work_item(base::Bind(&TestForwardBackwardCallback, &state)); 50 EXPECT_EQ(TCS_CALLED_FORWARD, state); 53 EXPECT_EQ(TCS_CALLED_ROLLBACK, state);
|
product_state_unittest.cc | 120 ProductState state; local 123 EXPECT_FALSE(state.Initialize(system_install_, dist_)); 128 ProductState state; local 131 EXPECT_FALSE(state.Initialize(system_install_, dist_)); 136 ProductState state; local 140 EXPECT_FALSE(state.Initialize(system_install_, dist_)); 145 ProductState state; local 149 EXPECT_TRUE(state.Initialize(system_install_, dist_)); 150 EXPECT_EQ("10.0.47.0", state.version().GetString()); 160 ProductState state; local 169 ProductState state; local 178 ProductState state; local 188 ProductState state; local 204 ProductState state; local 213 ProductState state; local 222 ProductState state; local 237 ProductState state; local 246 ProductState state; local 255 ProductState state; local 270 ProductState state; local 280 ProductState state; local 290 ProductState state; local 301 ProductState state; local 311 ProductState state; local 322 ProductState state; local 338 ProductState state; local 347 ProductState state; local 357 ProductState state; local 367 ProductState state; local 377 ProductState state; local 392 ProductState state; local 400 ProductState state; local 408 ProductState state; local [all...] |
/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);
|
/frameworks/rs/ |
rsProgram.cpp | 30 mHal.state.inputElementsCount++; 33 mHal.state.constantsCount++; 36 mHal.state.texturesCount++; 40 mTextures = new ObjectBaseRef<Allocation>[mHal.state.texturesCount]; 41 mSamplers = new ObjectBaseRef<Sampler>[mHal.state.texturesCount]; 42 mInputElements = new ObjectBaseRef<Element>[mHal.state.inputElementsCount]; 43 mConstantTypes = new ObjectBaseRef<Type>[mHal.state.constantsCount]; 44 mConstants = new ObjectBaseRef<Allocation>[mHal.state.constantsCount]; 46 mHal.state.textures = new Allocation*[mHal.state.texturesCount] [all...] |
/external/chromium/chrome/browser/ |
transport_security_persister.cc | 25 net::TransportSecurityState* state, const FilePath& profile_path) { 27 transport_security_state_ = state; 30 state->SetDelegate(this); 40 std::string state; local 41 if (!file_util::ReadFileToString(state_file_, &state)) 47 state)); 50 void TransportSecurityPersister::CompleteLoad(const std::string& state) { 54 if (!transport_security_state_->LoadEntries(state, &dirty)) { 55 LOG(ERROR) << "Failed to deserialize state: " << state; 81 std::string state; local [all...] |
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
pre_proc.cpp | 131 state = pointer to an array of pointer to structures of type 135 Structure pointed to by the pointer pointed to by state is 137 state points to the allocated memory 152 Allocates state memory and initializes state memory. 167 int Pre_Process_init (Pre_ProcessState **state) 171 if (state == (Pre_ProcessState **) NULL){ 175 *state = NULL; 179 fprintf(stderr, "Pre_Process_init: can not malloc state structure\n"); 184 *state = s [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/ |
ShaderSourceDetailsProvider.java | 19 import com.android.ide.eclipse.gltrace.state.GLCompositeProperty; 20 import com.android.ide.eclipse.gltrace.state.GLStateType; 21 import com.android.ide.eclipse.gltrace.state.GLStringProperty; 22 import com.android.ide.eclipse.gltrace.state.IGLProperty; 37 public boolean isApplicable(IGLProperty state) { 38 return getShaderSourceProperty(state) != null; 58 public void updateControl(IGLProperty state) { 59 IGLProperty shaderSrcProperty = getShaderSourceProperty(state); 72 * the state hierarchy. 73 * @param state any node in the GL state hierarch [all...] |
/external/chromium_org/chrome/browser/ui/gtk/ |
event_utils.cc | 13 int EventFlagsFromGdkState(guint state) { 15 flags |= (state & GDK_LOCK_MASK) ? ui::EF_CAPS_LOCK_DOWN : ui::EF_NONE; 16 flags |= (state & GDK_CONTROL_MASK) ? ui::EF_CONTROL_DOWN : ui::EF_NONE; 17 flags |= (state & GDK_SHIFT_MASK) ? ui::EF_SHIFT_DOWN : ui::EF_NONE; 18 flags |= (state & GDK_MOD1_MASK) ? ui::EF_ALT_DOWN : ui::EF_NONE; 19 flags |= (state & GDK_BUTTON1_MASK) ? ui::EF_LEFT_MOUSE_BUTTON : ui::EF_NONE; 20 flags |= (state & GDK_BUTTON2_MASK) ? ui::EF_MIDDLE_MOUSE_BUTTON 22 flags |= (state & GDK_BUTTON3_MASK) ? ui::EF_RIGHT_MOUSE_BUTTON : ui::EF_NONE; 27 WindowOpenDisposition DispositionFromGdkState(guint state) { 28 int event_flags = EventFlagsFromGdkState(state); 39 guint state = event->button.state; local [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_idle_api.cc | 36 IdleState state; member in struct:__anon1823::ExtensionIdlePollingData 44 static const char* IdleStateToDescription(IdleState state); 51 // Internal object which watches for changes in the system idle state. 66 const char* IdleStateToDescription(IdleState state) { 67 if (IDLE_STATE_ACTIVE == state) 69 if (IDLE_STATE_IDLE == state) 74 // Helper function for reporting the idle state. The lifetime of the object 101 if (IDLE_STATE_ACTIVE != polling_data.state) 102 return polling_data.state; 108 return polling_data.state; 120 IdleState state = CalculateIdleStateAndUpdateTimestamp( local 141 IdleState state = ThrottledCalculateIdleState(threshold, profile()); local [all...] |
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/ |
ph_disp.cpp | 52 product of state->prevCbGain and ONFACTPLUS1 in the ph_disp 133 state = pointer to a structure of type ph_dispState 136 Structure pointed to by state is initialized to zeros 165 int ph_disp_reset (ph_dispState *state) 169 if (state == (ph_dispState *) NULL){ 175 state->gainMem[i] = 0; 177 state->prevState = 0; 178 state->prevCbGain = 0; 179 state->lockFull = 0; 180 state->onset = 0; // assume no onset in star [all...] |