Home | History | Annotate | Download | only in proxy

Lines Matching refs:success

183 // on success. This may fail if the toString() throws an exception.
197 // Extracts an hostname argument from |args|. On success returns true
224 bool success = UTF16ToUTF8(punycode_output.data(),
227 DCHECK(success);
229 return success;
511 // Returns OK on success, otherwise an error code.
558 bool success;
565 success = context->js_bindings_->MyIpAddress(&result);
568 if (!success)
580 bool success;
587 success = context->js_bindings_->MyIpAddressEx(&ip_address_list);
590 if (!success)
606 bool success;
610 success = context->js_bindings_->DnsResolve(hostname, &ip_address);
613 return success ? ASCIIStringToV8String(ip_address) : v8::Null();
627 bool success;
631 success = context->js_bindings_->DnsResolveEx(hostname, &ip_address_list);
634 if (!success)
651 bool success = SortIpAddressList(ip_address_list, &sorted_ip_address_list);
652 if (!success)