Home | History | Annotate | Download | only in http

Lines Matching refs:base

10 #include "base/base64.h"
11 #include "base/file_path.h"
12 #include "base/format_macros.h"
13 #include "base/logging.h"
14 #include "base/string_util.h"
15 #include "base/stringprintf.h"
16 #include "base/threading/thread_restrictions.h"
17 #include "net/base/net_errors.h"
18 #include "net/base/net_util.h"
100 return base::StringPrintf("0x%08X 0x%08X", major_status, minor_status);
110 std::string rv = base::StringPrintf("(0x%08X)", status);
129 rv += base::StringPrintf(" %.*s", msg_len,
147 return base::StringPrintf("Major: %s | Minor: %s", major.c_str(),
258 output += base::StringPrintf("\"%s\"", str);
262 output = base::StringPrintf("(%u) \"", byte_length);
272 output += base::StringPrintf("\\x%02X", elements[i]);
317 base::StringPrintf("Unable to describe name 0x%p, %s",
325 std::string description = base::StringPrintf(
357 base::StringPrintf("Unable to describe context 0x%p, %s",
366 std::string description = base::StringPrintf("Context 0x%p: "
405 base::UnloadNativeLibrary(gssapi_library_);
425 base::NativeLibrary GSSAPISharedLibrary::LoadSharedLibrary() {
454 base::ThreadRestrictions::ScopedAllowIO allow_io_temporarily;
455 base::NativeLibrary lib = base::LoadNativeLibrary(file_path, NULL);
460 base::UnloadNativeLibrary(lib);
469 base::GetFunctionPointerFromNativeLibrary(lib, "gss_" #x)); \
475 bool GSSAPISharedLibrary::BindMethods(base::NativeLibrary lib) {
705 bool base64_rv = base::Base64Decode(encoded_auth_token, &decoded_auth_token);
734 bool base64_rv = base::Base64Encode(encode_input, &encode_output);