HomeSort by relevance Sort by last modified time
    Searched defs:dcc (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/rlz/win/lib/
machine_deal.cc 24 const wchar_t kDccValueName[] = L"DCC";
28 // Current DCC can only uses [a-zA-Z0-9_-!@$*();.<>,:]
124 bool MachineDealCode::Set(const char* dcc) {
131 // Validate the new dcc value.
132 size_t length = strlen(dcc);
134 ASSERT_STRING("MachineDealCode::Set: DCC length is exceeds max allowed.");
148 NormalizeDcc(dcc, normalized_dcc);
151 // Write the DCC to HKLM. Note that we need to include the null character
154 ASSERT_STRING("MachineDealCode::Set: Could not write the DCC value");
173 // Get the current DCC value to compare to later
290 wchar_t dcc[kMaxDccLength + 1]; local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcController.java 80 * @param phone the phone associated with Dcc and Dct
81 * @param dct the DataConnectionTracker associated with Dcc
82 * @param handler defines the thread/looper to be used with Dcc
97 DcController dcc = new DcController("Dcc", phone, dct, handler); local
98 dcc.start();
99 return dcc;
DcTrackerBase.java 1870 DcController dcc = mDcc; local
    [all...]
  /external/chromium_org/rlz/lib/
rlz_lib.cc 584 // Update the DCC in registry if needed.
634 // Report the DCC too if not empty. DCCs are windows-only.
635 char dcc[kMaxDccLength + 1]; local
636 dcc[0] = 0;
637 if (GetMachineDealCode(dcc, arraysize(dcc)) && dcc[0])
638 base::StringAppendF(&cgi_string, "&%s=%s", kDccCgiVariable, dcc);
  /external/qemu-pc-bios/vgabios/tests/
testbios.c 34 Bit8u dcc; member in struct:__anon34015
284 biosarea->dcc=peekb(0x40,0x8a);
310 printf("dcc : %02x\t",biosarea->dcc);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/irc/
irclib.py 25 a fairly thorough support for the basic IRC protocol, CTCP, DCC chat,
26 but DCC file transfers is not yet supported.
57 * There are no support for DCC file transfers.
82 # send data asynchronously to the server (and DCC connections)
83 # (maybe) automatically close unused, passive DCC connections after a while
307 def dcc(self, dcctype="chat"): member in class:IRC
312 dcctype -- "chat" for DCC CHAT connections or "raw" for
313 DCC SEND (or other DCC types). If "chat",
859 """This class represents a DCC connection
    [all...]

Completed in 150 milliseconds