Home
last modified time | relevance | path

Searched refs:new_status (Results 1 - 8 of 8) sorted by relevance

/third_party/gn/src/util/
H A Dauto_reset_event.h31 int new_status = old_status < 1 ? old_status + 1 : 1; in Signal()
32 if (status_.compare_exchange_weak(old_status, new_status, in Signal()
/third_party/python/Tools/scripts/
H A Dpep384_macrocheck.py85 new_status = ifdef_level.send(line)
86 dir = new_status - status
87 status = new_status
/third_party/skia/third_party/externals/abseil-cpp/absl/status/
H A Dstatus.h453 // Updates the existing status with `new_status` provided that `this->ok()`.
457 // information about `new_status`.
463 // // Instead of "if (overall_status.ok()) overall_status = new_status"
464 // overall_status.Update(new_status);
466 void Update(const Status& new_status);
467 void Update(Status&& new_status);
777 inline void Status::Update(const Status& new_status) { in Update() argument
779 *this = new_status; in Update()
783 inline void Status::Update(Status&& new_status) { in Update() argument
785 *this = std::move(new_status); in Update()
[all...]
/third_party/node/deps/v8/src/objects/
H A Dmodule.cc57 void SetStatusInternal(Module module, Module::Status new_status) { in SetStatusInternal() argument
61 module.set_status(new_status); in SetStatusInternal()
64 module.set_status(new_status); in SetStatusInternal()
70 void Module::SetStatus(Status new_status) { in SetStatus() argument
72 DCHECK_LE(status(), new_status); in SetStatus() local
73 DCHECK_NE(new_status, Module::kErrored); in SetStatus()
74 SetStatusInternal(*this, new_status); in SetStatus()
H A Dsource-text-module.cc424 ZoneForwardList<Handle<SourceTextModule>>* stack, Status new_status) { in MaybeTransitionComponent()
425 DCHECK(new_status == kLinked || new_status == kEvaluated); in MaybeTransitionComponent()
439 new_status == kLinked ? kLinking : kEvaluating); in MaybeTransitionComponent()
440 if (new_status == kLinked) { in MaybeTransitionComponent()
443 } else if (new_status == kEvaluated) { in MaybeTransitionComponent()
447 ancestor->SetStatus(new_status); in MaybeTransitionComponent()
422 MaybeTransitionComponent( Isolate* isolate, Handle<SourceTextModule> module, ZoneForwardList<Handle<SourceTextModule>>* stack, Status new_status) MaybeTransitionComponent() argument
H A Dsource-text-module.h193 ZoneForwardList<Handle<SourceTextModule>>* stack, Status new_status);
/third_party/pulseaudio/src/modules/jack/
H A Dmodule-jackdbus-detect.c227 bool new_status = false; in check_service_started() local
255 new_status = call_result; in check_service_started()
264 if (new_status) in check_service_started()
268 u->is_service_started = new_status; in check_service_started()
269 return new_status; in check_service_started()
/third_party/skia/third_party/externals/libwebp/src/utils/
H A Dthread_utils.c231 static void ChangeState(WebPWorker* const worker, WebPWorkerStatus new_status) { in ChangeState() argument
245 if (new_status != OK) { in ChangeState()
246 worker->status_ = new_status; in ChangeState()

Completed in 7 milliseconds