Home
last modified time | relevance | path

Searched refs:state (Results 7751 - 7775 of 21522) sorted by relevance

1...<<311312313314315316317318319320>>...861

/kernel/linux/linux-5.10/drivers/gpu/drm/tegra/
H A Dsor.c455 to_sor_state(struct drm_connector_state *state) in to_sor_state() argument
457 return container_of(state, struct tegra_sor_state, base); in to_sor_state()
1284 struct tegra_sor_state *state) in tegra_sor_mode_set()
1310 switch (state->bpc) { in tegra_sor_mode_set()
1498 if (!crtc || !crtc->state->active) { in tegra_sor_show_crc()
1660 if (!crtc || !crtc->state->active) { in tegra_sor_show_regs()
1717 struct tegra_sor_state *state; in tegra_sor_connector_reset() local
1719 state = kzalloc(sizeof(*state), GFP_KERNEL); in tegra_sor_connector_reset()
1720 if (!state) in tegra_sor_connector_reset()
1282 tegra_sor_mode_set(struct tegra_sor *sor, const struct drm_display_mode *mode, struct tegra_sor_state *state) tegra_sor_mode_set() argument
1746 struct tegra_sor_state *state = to_sor_state(connector->state); tegra_sor_connector_duplicate_state() local
1804 struct tegra_sor_state *state = to_sor_state(conn_state); tegra_sor_encoder_atomic_check() local
2254 struct tegra_sor_state *state; tegra_sor_hdmi_enable() local
2724 struct tegra_sor_state *state; tegra_sor_dp_enable() local
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/tegra/
H A Dsor.c455 to_sor_state(struct drm_connector_state *state) in to_sor_state() argument
457 return container_of(state, struct tegra_sor_state, base); in to_sor_state()
1285 struct tegra_sor_state *state) in tegra_sor_mode_set()
1311 switch (state->bpc) { in tegra_sor_mode_set()
1499 if (!crtc || !crtc->state->active) { in tegra_sor_show_crc()
1661 if (!crtc || !crtc->state->active) { in tegra_sor_show_regs()
1718 struct tegra_sor_state *state; in tegra_sor_connector_reset() local
1720 state = kzalloc(sizeof(*state), GFP_KERNEL); in tegra_sor_connector_reset()
1721 if (!state) in tegra_sor_connector_reset()
1283 tegra_sor_mode_set(struct tegra_sor *sor, const struct drm_display_mode *mode, struct tegra_sor_state *state) tegra_sor_mode_set() argument
1747 struct tegra_sor_state *state = to_sor_state(connector->state); tegra_sor_connector_duplicate_state() local
1805 struct tegra_sor_state *state = to_sor_state(conn_state); tegra_sor_encoder_atomic_check() local
2250 struct tegra_sor_state *state; tegra_sor_hdmi_enable() local
2720 struct tegra_sor_state *state; tegra_sor_dp_enable() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/aes/
H A Daes_core.c425 static void ShiftRows(u64 *state) in ShiftRows() argument
431 s0 = (unsigned char *)state; in ShiftRows()
444 static void InvShiftRows(u64 *state) in InvShiftRows() argument
450 s0 = (unsigned char *)state; in InvShiftRows()
463 static void MixColumns(u64 *state) in MixColumns() argument
470 s1.d = state[c]; in MixColumns()
487 state[c] = s.d; in MixColumns()
491 static void InvMixColumns(u64 *state) in InvMixColumns() argument
498 s1.d = state[c]; in InvMixColumns()
523 state[ in InvMixColumns()
527 AddRoundKey(u64 *state, const u64 *w) AddRoundKey() argument
536 u64 state[2]; Cipher() local
563 u64 state[2]; InvCipher() local
[all...]
/third_party/openssl/crypto/aes/
H A Daes_core.c425 static void ShiftRows(u64 *state) in ShiftRows() argument
431 s0 = (unsigned char *)state; in ShiftRows()
444 static void InvShiftRows(u64 *state) in InvShiftRows() argument
450 s0 = (unsigned char *)state; in InvShiftRows()
463 static void MixColumns(u64 *state) in MixColumns() argument
470 s1.d = state[c]; in MixColumns()
487 state[c] = s.d; in MixColumns()
491 static void InvMixColumns(u64 *state) in InvMixColumns() argument
498 s1.d = state[c]; in InvMixColumns()
523 state[ in InvMixColumns()
527 AddRoundKey(u64 *state, const u64 *w) AddRoundKey() argument
536 u64 state[2]; Cipher() local
563 u64 state[2]; InvCipher() local
[all...]
/third_party/python/Modules/
H A Ditertoolsmodule.c339 PyDoc_STRVAR(reduce_doc, "Return state information for pickling.");
342 groupby_setstate(groupbyobject *lz, PyObject *state) in groupby_setstate() argument
345 if (!PyTuple_Check(state)) { in groupby_setstate()
346 PyErr_SetString(PyExc_TypeError, "state is not a tuple"); in groupby_setstate()
349 if (!PyArg_ParseTuple(state, "OOO", &currkey, &currvalue, &tgtkey)) { in groupby_setstate()
361 PyDoc_STRVAR(setstate_doc, "Set state information for unpickling.");
932 tee_setstate(teeobject *to, PyObject *state) in tee_setstate() argument
936 if (!PyTuple_Check(state)) { in tee_setstate()
937 PyErr_SetString(PyExc_TypeError, "state is not a tuple"); in tee_setstate()
940 if (!PyArg_ParseTuple(state, " in tee_setstate()
1195 cycle_setstate(cycleobject *lz, PyObject *state) cycle_setstate() argument
1370 dropwhile_setstate(dropwhileobject *lz, PyObject *state) dropwhile_setstate() argument
1529 takewhile_reduce_setstate(takewhileobject *lz, PyObject *state) takewhile_reduce_setstate() argument
1778 islice_setstate(isliceobject *lz, PyObject *state) islice_setstate() argument
2129 chain_setstate(chainobject *lz, PyObject *state) chain_setstate() argument
2459 product_setstate(productobject *lz, PyObject *state) product_setstate() argument
2789 combinations_setstate(combinationsobject *lz, PyObject *state) combinations_setstate() argument
3119 cwr_setstate(cwrobject *lz, PyObject *state) cwr_setstate() argument
3491 permutations_setstate(permutationsobject *po, PyObject *state) permutations_setstate() argument
3749 accumulate_setstate(accumulateobject *lz, PyObject *state) accumulate_setstate() argument
4736 zip_longest_setstate(ziplongestobject *lz, PyObject *state) zip_longest_setstate() argument
[all...]
/base/location/services/location_locator/locator/include/
H A Drequest_manager.h70 void SyncStillMovementState(bool state);
71 void SyncIdleState(bool state);
91 void ReportDataToResSched(std::string state, const pid_t pid, const pid_t uid);
/base/powermgr/display_manager/brightness_manager/src/
H A Dbrightness_manager.cpp44 void BrightnessManager::SetDisplayState(uint32_t id, DisplayState state, uint32_t reason) in SetDisplayState() argument
47 mBrightnessManagerExt.SetDisplayState(id, state, reason); in SetDisplayState()
49 BrightnessService::Get().SetDisplayState(id, state); in SetDisplayState()
/base/powermgr/power_manager/test/unittest/src/mock/
H A Dpower_mock_proxy_test.cpp43 void PowerMockProxyTest::PowerStateTestCallback::OnPowerStateChanged(PowerState state) in OnPowerStateChanged() argument
95 auto state = sptrProxy->GetState(); in HWTEST_F() local
96 EXPECT_EQ(state, PowerState::UNKNOWN); in HWTEST_F()
/base/msdp/device_status/rust/subsystem/device_profile/sys/src/
H A Dbinding.rs204 type OnCrossStateUpdate = extern "C" fn (listener: *mut CICrossStateListener, device_id: *const c_char, state: u32);
206 /// A struct representing a cross-state listener.
209 /// An optional function pointer for cloning the cross-state listener.
211 /// An optional function pointer for destructing or cleaning up the cross-state listener.
213 /// An optional callback function for handling cross-state update events.
219 /// Updates the state of the cross switch for all registered devices.
223 /// * `state` - An unsigned integer value that represents the cross switch state.
228 pub fn UpdateCrossSwitchState(state: u32) -> i32; in UpdateCrossSwitchState()
229 /// Synchronizes the state o in UpdateCrossSwitchState()
[all...]
/base/msdp/device_status/frameworks/js/napi/interaction/coordination/src/
H A Djs_util.cpp150 napi_value state = nullptr; in GetCrossingSwitchStateResult() local
151 CHKRP(napi_get_boolean(env, result, &state), GET_BOOLEAN); in GetCrossingSwitchStateResult()
154 CHKRP(napi_set_named_property(env, object, "state", state), SET_NAMED_PROPERTY); in GetCrossingSwitchStateResult()
/base/security/certificate_manager/test/fuzz_test/cmsystemtrustedstore_fuzzer/
H A Dcmsystemtrustedstore_fuzzer.cpp43 uint32_t state = CERT_STATUS_ENABLED; in SetSysCertStatus() local
45 if (!GetUintFromBuffer(tmpData, remainSize, offset, &state)) { in SetSysCertStatus()
53 { .tag = CM_TAG_PARAM1_UINT32, .uint32Param = state }, in SetSysCertStatus()
/base/security/device_auth/services/session_manager/src/session/v2/auth_sub_session/
H A Dauth_sub_session.c73 impl->base.state = AUTH_STATE_RUNNING; in StartAuthSubSession()
89 impl->base.state = (protocol->curState == protocol->finishState) ? AUTH_STATE_FINISH : AUTH_STATE_RUNNING; in ProcessAuthSubSession()
168 impl->base.state = AUTH_STATE_INIT; in CreateAuthSubSession()
/base/telephony/call_manager/services/audio/include/
H A Daudio_control_manager.h68 void SetRingState(RingState state);
69 void SetSoundState(SoundState state);
70 void SetToneState(ToneState state);
/base/telephony/core_service/services/satellite_service_interaction/src/
H A Dsatellite_core_callback_stub.cpp97 int32_t state = data.ReadInt32(); in OnSetRadioStateResponse() local
103 info->state = state; in OnSetRadioStateResponse()
/base/telephony/state_registry/frameworks/js/napi/src/
H A Dnapi_telephony_observer.cpp64 int32_t slotId, CardType type, SimState state, LockReason reason) in OnSimStateUpdated()
66 TELEPHONY_LOGI("OnSimStateUpdated slotId = %{public}d, simState = %{public}d", slotId, state); in OnSimStateUpdated()
68 std::make_unique<SimStateUpdateInfo>(slotId, type, state, reason); in OnSimStateUpdated()
63 OnSimStateUpdated( int32_t slotId, CardType type, SimState state, LockReason reason) OnSimStateUpdated() argument
/base/web/webview/ohos_adapter/graphic_adapter/src/
H A Dvsync_adapter_impl.cpp216 void VSyncAdapterImpl::SetScene(const std::string& sceneName, uint32_t state) { in SetScene() argument
217 WVLOG_D("APSManagerAdapterImpl SetScene sceneName=%{public}s state=%{public}u", sceneName.c_str(), state); in SetScene()
225 Rosen::ApsManager::GetInstance().SetScene(pkgName_, sceneName, state); in SetScene()
/foundation/ability/form_fwk/test/fuzztest/formtaskmgr_fuzzer/
H A Dformtaskmgr_fuzzer.cpp71 AppExecFwk::FormState state = AppExecFwk::FormState::UNKNOWN; in DoSomethingInterestingWithMyAPI() local
73 formTaskMgr.PostAcquireStateTaskToHost(state, wants, remoteObject); in DoSomethingInterestingWithMyAPI()
90 formTaskMgr.AcquireStateBack(state, wants, remoteObject); in DoSomethingInterestingWithMyAPI()
/foundation/ability/ability_runtime/test/mock/frameworks_kits_appkit_test/include/
H A Dmock_application.cpp98 std::vector<std::string> state; in OnStart() local
101 GetAbilityManager()->DumpState("test", state); in OnStart()
189 int32_t MockApplication::ScheduleChangeAppGcState(int32_t state) in ScheduleChangeAppGcState() argument
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/calendar_picker/
H A Dcalendar_dialog_pattern.h85 void SetHoverState(bool state) in SetHoverState() argument
87 hoverState_ = state; in SetHoverState()
155 void HandleEntryNodeHoverEvent(bool state, const Offset& globalLocation);
H A Dcalendar_picker_pattern.h92 void HandleTextHoverEvent(bool state, int32_t index);
170 void HandleHoverEvent(bool state, const Offset& globalLocation);
190 void HandleButtonHoverEvent(bool state, int32_t index);
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_image_animator_ffi.cpp66 void FfiOHOSAceFrameworkImageAnimatorSetState(int32_t state) in FfiOHOSAceFrameworkImageAnimatorSetState() argument
68 if (!Utils::CheckParamsValid(state, ANIMATOR_STATUS.size())) { in FfiOHOSAceFrameworkImageAnimatorSetState()
69 LOGE("invalid value for animator state"); in FfiOHOSAceFrameworkImageAnimatorSetState()
72 ImageAnimatorModel::GetInstance()->SetState(static_cast<int32_t>(ANIMATOR_STATUS[state])); in FfiOHOSAceFrameworkImageAnimatorSetState()
/foundation/graphic/surface_lite/interfaces/innerkits/
H A Dsurface_buffer_impl.h59 BufferState state; member
261 * @brief Get buffer delete state. If deletePending == 1, buffer will be freed when state == BUFFER_STATE_FREE.
262 * @returns [in] The buffer delete state
270 * @brief Set buffer delete state. If deletePending == 1, buffer will be freed when state == BUFFER_STATE_FREE.
271 * @param [in] The buffer delete state
279 * @brief Get buffer state. Buffer state detail : BUFFER_STATE.
280 * @returns [in] The buffer state
[all...]
/foundation/graphic/graphic_surface/utils/frame_report/src/
H A Dframe_report.cpp63 void FrameReport::SetGameScene(int32_t pid, int32_t state) in SetGameScene() argument
65 LOGI("FrameReport::SetGameScene pid = %{public}d state = %{public}d ", pid, state); in SetGameScene()
66 switch (state) { in SetGameScene()
70 "state = 0", pid); in SetGameScene()
84 LOGW("FrameReport::SetGameScene state error!"); in SetGameScene()
/foundation/multimedia/media_foundation/src/osal/task/ffrt/
H A Dtask.cpp82 MEDIA_LOG_W("task " PUBLIC_LOG_S " stop entered, current state: " PUBLIC_LOG_D32, in Stop()
111 RunningState state = runningState_.load(); in Pause() local
112 MEDIA_LOG_I("task " PUBLIC_LOG_S " Pause called, running state = " PUBLIC_LOG_D32, name_.c_str(), state); in Pause()
113 switch (state) { in Pause()
158 MEDIA_LOG_DD("task " PUBLIC_LOG_S " is running on state : " PUBLIC_LOG_D32, in Run()
/foundation/multimedia/av_session/frameworks/native/session/test/fuzztest/avsessioncontrollerproxy_fuzzer/
H A Davsession_controller_proxy_fuzzer.cpp80 AVPlaybackState state; in AvsessionControllerProxyTest() local
82 state.SetState(stateTemp); in AvsessionControllerProxyTest()
103 avSessionControllerProxy.GetAVPlaybackState(state); in AvsessionControllerProxyTest()

Completed in 29 milliseconds

1...<<311312313314315316317318319320>>...861