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

  /art/runtime/
atomic.h 235 bool CompareExchangeStrongSequentiallyConsistent(T expected_value, T desired_value) {
236 return this->compare_exchange_strong(expected_value, desired_value, std::memory_order_seq_cst);
240 bool CompareExchangeWeakSequentiallyConsistent(T expected_value, T desired_value) {
241 return this->compare_exchange_weak(expected_value, desired_value, std::memory_order_seq_cst);
246 bool CompareExchangeStrongRelaxed(T expected_value, T desired_value) {
247 return this->compare_exchange_strong(expected_value, desired_value, std::memory_order_relaxed);
251 bool CompareExchangeWeakRelaxed(T expected_value, T desired_value) {
252 return this->compare_exchange_weak(expected_value, desired_value, std::memory_order_relaxed);
258 bool CompareExchangeWeakAcquire(T expected_value, T desired_value) {
259 return this->compare_exchange_weak(expected_value, desired_value, std::memory_order_acquire)
    [all...]
  /system/core/fastbootd/
utils.c 209 static int wait_for_property(const char *name, const char *desired_value, int maxwait)
221 if (desired_value == NULL || strcmp(value, desired_value) == 0) {
  /system/core/libnetutils/
dhcp_utils.c 62 * If desired_value is NULL, then just wait for the property to
66 static int wait_for_property(const char *name, const char *desired_value, int maxwait)
78 if (desired_value == NULL ||
79 strcmp(value, desired_value) == 0) {
  /external/chromium_org/chrome/test/chromedriver/
capabilities.cc 321 bool desired_value; local
322 if (!option.GetAsBoolean(&desired_value))
324 if (desired_value)
  /system/netd/server/
MDnsSdListener.cpp 537 static int wait_for_property(const char *name, const char *desired_value, int maxwait)
549 if (desired_value == NULL || strcmp(value, desired_value) == 0) {

Completed in 103 milliseconds