HomeSort by relevance Sort by last modified time
    Searched refs:new_status (Results 1 - 15 of 15) sorted by null

  /external/autotest/tko/
status_lib.py 38 def update(self, new_status):
39 if new_status not in statuses:
41 if is_worse_than(new_status, self.current_status()):
42 self.status_stack[-1] = new_status
  /development/vndk/tools/header-checker/src/diff_merge/
merge_abi_diff.cpp 55 const abi_diff::CompatibilityStatus &new_status) {
59 if (new_status == abi_diff::CompatibilityStatus::INCOMPATIBLE) {
64 if (new_status != abi_diff::CompatibilityStatus::COMPATIBLE) {
97 abi_diff::CompatibilityStatus new_status = diff_tu.compatibility_status(); local
101 added_tu_diff->set_compatibility_status(new_status);
103 if (IsStatusDowngraded(status, new_status)) {
104 status = new_status;
  /external/libvpx/libvpx/vpx_util/
vpx_thread.c 54 static void change_state(VPxWorker *const worker, VPxWorkerStatus new_status) {
67 if (new_status != OK) {
68 worker->status_ = new_status;
  /external/clang/test/SemaCXX/
warn-unused-result.cpp 56 inline void Update(const Status& new_status) {
58 *this = new_status; //no-warning
  /external/autotest/scheduler/
rdb_hosts_unittest.py 161 new_status = 'newstatus'
162 client_host.set_status(new_status)
165 new_status and client_host.status == new_status)
  /external/libaom/libaom/aom_util/
aom_thread.c 85 static void change_state(AVxWorker *const worker, AVxWorkerStatus new_status) {
98 if (new_status != OK) {
99 worker->status_ = new_status;
  /art/runtime/mirror/
class.cc 143 void Class::SetStatus(Handle<Class> h_this, ClassStatus new_status, Thread* self) {
148 if (UNLIKELY(new_status <= old_status &&
149 new_status != ClassStatus::kErrorUnresolved &&
150 new_status != ClassStatus::kErrorResolved &&
151 new_status != ClassStatus::kRetired)) {
153 << " " << old_status << " -> " << new_status; local
155 if (new_status >= ClassStatus::kResolved || old_status >= ClassStatus::kResolved) {
159 << h_this->PrettyClass() << " " << old_status << " -> " << new_status; local
162 if (UNLIKELY(IsErroneous(new_status))) {
166 << " old_status: " << old_status << " new_status: " << new_status local
    [all...]
class.h 98 static void SetStatus(Handle<Class> h_this, ClassStatus new_status, Thread* self)
    [all...]
  /external/v8/src/objects/
module.cc 180 void Module::PrintStatusTransition(Status new_status) {
183 os << "Changing module status from " << status() << " to " << new_status
193 void Module::SetStatus(Status new_status) {
195 DCHECK_LE(status(), new_status); local
196 DCHECK_NE(new_status, Module::kErrored);
198 PrintStatusTransition(new_status);
200 set_status(new_status);
557 Status new_status) {
558 DCHECK(new_status == kInstantiated || new_status == kEvaluated)
    [all...]
module.h 196 ZoneForwardList<Handle<Module>>* stack, Status new_status);
209 void PrintStatusTransition(Status new_status);
  /external/webp/src/utils/
thread_utils.c 227 static void ChangeState(WebPWorker* const worker, WebPWorkerStatus new_status) {
241 if (new_status != OK) {
242 worker->status_ = new_status;
  /external/tensorflow/tensorflow/core/lib/core/
status.h 67 /// \brief If `ok()`, stores `new_status` into `*this`. If `!ok()`,
69 /// information about `new_status`.
73 /// `if (overall_status.ok()) overall_status = new_status`
75 /// `overall_status.Update(new_status);`
76 void Update(const Status& new_status);
status.cc 33 void Status::Update(const Status& new_status) {
35 *this = new_status;
  /external/libchrome/mojo/public/cpp/bindings/tests/
binding_unittest.cc 348 auto handler_helper = [] (int* status, int expected_status, int new_status) {
350 *status = new_status;
352 auto create_handler = [&] (int expected_status, int new_status) {
353 return base::Bind(handler_helper, &status, expected_status, new_status);
  /external/tensorflow/tensorflow/core/common_runtime/
executor.cc     [all...]

Completed in 1243 milliseconds