/external/chromium_org/rlz/win/lib/ |
machine_deal.h | 17 // Set the OEM Deal Confirmation Code (DCC). This information is used for RLZ 20 static bool Set(const char* dcc); 25 char* dcc, 29 // Parses a ping response, checks if it is valid and sets the machine DCC 31 // the DCC to be considered valid. 36 // Gets the new DCC to set from a ping response. Returns true if the ping 37 // response is valid. Sets has_new_dcc true if there is a new DCC value. 43 // Get the DCC cgi argument string to append to a daily or financial ping. 47 static bool Get(char* dcc, int dcc_size); 50 // Clear the DCC value. Only for testing purposes [all...] |
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...] |
rlz_lib_win.cc | 191 bool SetMachineDealCode(const char* dcc) { 192 return MachineDealCode::Set(dcc); 199 bool GetMachineDealCode(char* dcc, size_t dcc_size) { 200 return MachineDealCode::Get(dcc, dcc_size);
|
/external/chromium_org/rlz/win/dll/ |
exports.cc | 48 RLZ_DLL_EXPORT bool SetMachineDealCode(const char* dcc) { 49 return rlz_lib::SetMachineDealCode(dcc); 56 RLZ_DLL_EXPORT bool GetMachineDealCode2(char* dcc, size_t dcc_size) { 57 return rlz_lib::GetMachineDealCode(dcc, dcc_size);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
DcTesterDeactivateAll.java | 46 // is running on the same thread as Dcc. 54 log("Send DEACTIVATE to all Dcc's"); 68 DcTesterDeactivateAll(PhoneBase phone, DcController dcc, Handler handler) { 70 mDcc = dcc;
|
DcController.java | 72 * @param phone the phone associated with Dcc and Dct 73 * @param dct the DataConnectionTracker associated with Dcc 74 * @param handler defines the thread/looper to be used with Dcc 89 DcController dcc = new DcController("Dcc", phone, dct, handler); local 90 dcc.start(); 91 return dcc;
|
DataConnection.java | 177 // ***** Event codes for driving the state machine, package visible for Dcc 234 DcController dcc) { 236 "DC-" + mInstanceNumber.incrementAndGet(), id, dct, failBringUpAll, dcc); 309 //***** Constructor (NOTE: uses dcc.getHandler() as its Handler) 312 DcController dcc) { 313 super(name, dcc.getHandler()); 321 mDcController = dcc; [all...] |
DcTrackerBase.java | 1806 DcController dcc = mDcc; local [all...] |
/external/chromium_org/rlz/lib/ |
rlz_lib.h | 282 // Set the OEM Deal Confirmation Code (DCC). This information is used for RLZ 286 bool RLZ_LIB_API SetMachineDealCode(const char* dcc); 288 // Get the DCC cgi argument string to append to a daily ping. 294 // Get the DCC value stored in registry. 298 bool RLZ_LIB_API GetMachineDealCode(char* dcc, size_t dcc_size); 300 // Parses a ping response, checks if it is valid and sets the machine DCC 301 // from the response. The ping must also contain the current DCC value in
|
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/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...] |
/external/qemu-pc-bios/vgabios/tests/ |
testbios.c | 34 Bit8u dcc;
member in struct:__anon25754 284 biosarea->dcc=peekb(0x40,0x8a);
310 printf("dcc : %02x\t",biosarea->dcc);
|