HomeSort by relevance Sort by last modified time
    Searched refs:action_ (Results 1 - 25 of 29) sorted by null

1 2

  /bionic/tests/
ScopedSignalHandler.h 48 memset(&action_, 0, sizeof(action_));
49 action_.sa_flags = sa_flags;
50 action_.sa_handler = handler;
51 sigaction64(signal_number_, &action_, &old_action_);
57 memset(&action_, 0, sizeof(action_));
58 action_.sa_flags = sa_flags;
59 action_.sa_sigaction = action;
60 sigaction64(signal_number_, &action_, &old_action_)
72 struct sigaction64 action_; member in class:ScopedSignalHandler
    [all...]
  /external/webrtc/webrtc/modules/video_coding/
qm_select.cc 365 action_.spatial = kNoChangeSpatial;
366 action_.temporal = kNoChangeTemporal;
446 action_.spatial = down_action_history_[0].spatial;
447 action_.temporal = down_action_history_[0].temporal;
464 action_.spatial = down_action_history_[0].spatial;
465 action_.temporal = kNoChangeTemporal;
469 action_.spatial = kNoChangeSpatial;
470 action_.temporal = down_action_history_[0].temporal;
519 action_.spatial = kOneQuarterSpatialUniform;
523 action_.spatial = kOneHalfSpatialUniform
    [all...]
qm_select.h 316 ResolutionAction action_; member in class:webrtc::VCMQmResolution
  /art/sigchainlib/
sigchain.cc 212 linked_sigaction64(signo, &handler_action, &action_);
214 linked_sigaction(signo, &handler_action, &action_);
220 if constexpr (std::is_same_v<decltype(action_), SigactionType>) {
221 return action_;
224 result.sa_flags = action_.sa_flags;
225 result.sa_handler = action_.sa_handler;
226 result.sa_restorer = action_.sa_restorer;
227 memcpy(&result.sa_mask, &action_.sa_mask,
228 std::min(sizeof(action_.sa_mask), sizeof(result.sa_mask)));
235 if constexpr (std::is_same_v<decltype(action_), SigactionType>)
280 struct sigaction64 action_; member in class:art::SignalChain
282 struct sigaction action_; member in class:art::SignalChain
    [all...]
  /system/update_engine/common/
action_processor_unittest.cc 114 ActionProcessorTestAction action_; member in class:chromeos_update_engine::ActionProcessorTest
119 action_processor_.EnqueueAction(&action_);
121 EXPECT_FALSE(action_.IsRunning());
124 EXPECT_TRUE(action_.IsRunning());
125 EXPECT_EQ(action_processor_.current_action(), &action_);
126 action_.CompleteAction();
128 EXPECT_FALSE(action_.IsRunning());
132 action_processor_.EnqueueAction(&action_);
134 action_.CompleteAction();
140 action_processor_.EnqueueAction(&action_);
    [all...]
utils.h 378 action_(action),
383 processor_->ActionComplete(action_, code_);
393 AbstractAction* action_; member in class:chromeos_update_engine::ScopedActionCompleter
  /system/core/init/
action_parser.h 34 : action_manager_(action_manager), subcontexts_(subcontexts), action_(nullptr) {}
43 std::unique_ptr<Action> action_; member in class:android::init::ActionParser
action_parser.cpp 141 action_ = std::move(action);
146 return action_ ? action_->AddCommand(std::move(args), line) : Success();
150 if (action_ && action_->NumCommands() > 0) {
151 action_manager_->AddAction(std::move(action_));
  /external/libcxx/test/support/
test_iterators.h 345 : begin_(nullptr), end_(nullptr), current_(nullptr), action_(TADereference), index_(0) {}
347 : begin_(first), end_(last), current_(first), action_(action), index_(index) {}
349 : begin_(rhs.begin_), end_(rhs.end_), current_(rhs.current_), action_(rhs.action_), index_(rhs.index_) {}
352 if (action_ == TAAssignment)
367 action_ = rhs.action_;
375 if (action_ == TADereference)
391 if (action_ == TAIncrement)
415 if (action_ == TADecrement
460 ThrowingAction action_; member in struct:ThrowingIterator
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
test_iterators.h 345 : begin_(nullptr), end_(nullptr), current_(nullptr), action_(TADereference), index_(0) {}
347 : begin_(first), end_(last), current_(first), action_(action), index_(index) {}
349 : begin_(rhs.begin_), end_(rhs.end_), current_(rhs.current_), action_(rhs.action_), index_(rhs.index_) {}
352 if (action_ == TAAssignment)
367 action_ = rhs.action_;
375 if (action_ == TADereference)
391 if (action_ == TAIncrement)
415 if (action_ == TADecrement
460 ThrowingAction action_; member in struct:ThrowingIterator
    [all...]
  /external/tensorflow/tensorflow/core/platform/posix/
subprocess.h 122 ChannelAction action_[kNFds] GUARDED_BY(data_mu_);
subprocess.cc 72 action_[i] = ACTION_CLOSE;
152 action_[chan] = action;
171 if (action_[i] == ACTION_PIPE) {
232 switch (action_[i]) {
374 if (action_[i] == ACTION_PIPE) {
  /system/update_engine/payload_consumer/
filesystem_verifier_action_unittest.cc 66 : action_(action), ran_(false), code_(ErrorCode::kError) {}
69 if (action_->IsCleanupPending()) {
98 FilesystemVerifierAction* action_; member in class:chromeos_update_engine::FilesystemVerifierActionTestDelegate
  /external/google-breakpad/src/testing/include/gmock/
gmock-actions.h 774 explicit IgnoreResultAction(const A& action) : action_(action) {}
791 return Action<F>(new Impl<F>(action_));
801 explicit Impl(const A& action) : action_(action) {}
805 action_.Perform(args);
814 const Action<OriginalFunction> action_; member in class:testing::internal::IgnoreResultAction::Impl
819 const A action_; member in class:testing::internal::IgnoreResultAction
    [all...]
gmock-spec-builders.h 320 action_ = action;
334 return action_;
350 // action => action_
353 Action<F> action_;
    [all...]
gmock-generated-actions.h 590 explicit WithArgsAction(const InnerAction& action) : action_(action) {}
593 operator Action<F>() const { return MakeAction(new Impl<F>(action_)); }
602 explicit Impl(const InnerAction& action) : action_(action) {}
605 return action_.Perform(SelectArgs<Result, ArgumentTuple, k1, k2, k3, k4,
613 Action<InnerFunctionType> action_; member in class:testing::internal::WithArgsAction::Impl
616 const InnerAction action_; member in class:testing::internal::WithArgsAction
    [all...]
  /system/update_engine/
omaha_response_handler_action_unittest.cc 71 std::unique_ptr<OmahaResponseHandlerAction> action_; member in class:chromeos_update_engine::OmahaResponseHandlerActionTest
141 action_.reset(new OmahaResponseHandlerAction(
145 BondActions(&feeder_action, action_.get());
147 BondActions(action_.get(), &collector_action);
149 processor.EnqueueAction(action_.get());
518 install_plan = action_->install_plan();
  /external/googletest/googlemock/include/gmock/
gmock-actions.h 892 explicit IgnoreResultAction(const A& action) : action_(action) {}
909 return Action<F>(new Impl<F>(action_));
919 explicit Impl(const A& action) : action_(action) {}
923 action_.Perform(args);
932 const Action<OriginalFunction> action_; member in class:testing::internal::IgnoreResultAction::Impl
937 const A action_; member in class:testing::internal::IgnoreResultAction
    [all...]
gmock-spec-builders.h 325 action_ = action;
339 return action_;
355 // action => action_
358 Action<F> action_;
    [all...]
gmock-generated-actions.h 463 explicit WithArgsAction(const InnerAction& action) : action_(action) {}
466 operator Action<F>() const { return MakeAction(new Impl<F>(action_)); }
475 explicit Impl(const InnerAction& action) : action_(action) {}
478 return action_.Perform(SelectArgs<Result, ArgumentTuple, k1, k2, k3, k4,
486 Action<InnerFunctionType> action_; member in class:testing::internal::WithArgsAction::Impl
489 const InnerAction action_; member in class:testing::internal::WithArgsAction
    [all...]
  /external/v8/testing/gmock/include/gmock/
gmock-actions.h 892 explicit IgnoreResultAction(const A& action) : action_(action) {}
909 return Action<F>(new Impl<F>(action_));
919 explicit Impl(const A& action) : action_(action) {}
923 action_.Perform(args);
932 const Action<OriginalFunction> action_; member in class:testing::internal::IgnoreResultAction::Impl
937 const A action_; member in class:testing::internal::IgnoreResultAction
    [all...]
gmock-spec-builders.h 324 action_ = action;
338 return action_;
354 // action => action_
357 Action<F> action_;
    [all...]
gmock-generated-actions.h 463 explicit WithArgsAction(const InnerAction& action) : action_(action) {}
466 operator Action<F>() const { return MakeAction(new Impl<F>(action_)); }
475 explicit Impl(const InnerAction& action) : action_(action) {}
478 return action_.Perform(SelectArgs<Result, ArgumentTuple, k1, k2, k3, k4,
486 Action<InnerFunctionType> action_; member in class:testing::internal::WithArgsAction::Impl
489 const InnerAction action_; member in class:testing::internal::WithArgsAction
    [all...]
  /system/core/libbacktrace/
backtrace_test.cpp 1680 struct sigaction action_; member in class:ScopedSignalHandler
    [all...]
  /external/v8/src/regexp/
jsregexp.h 810 EndNode(Action action, Zone* zone) : RegExpNode(zone), action_(action) {}
830 Action action_; member in class:v8::internal::EndNode
    [all...]

Completed in 414 milliseconds

1 2