Home | History | Annotate | Download | only in ipc

Lines Matching defs:secret

162     int32 secret;
163 failed = it.ReadInt(&secret) ? (secret != client_secret_) : true;
186 const std::string& channel_id, int32* secret) {
189 // Prevent the shared secret from ending up in the pipe name.
192 if (secret) // Retrieve the secret if asked for.
193 base::StringToInt(channel_id.substr(index + 1), secret);
198 if (secret)
199 *secret = 0;
274 // Don't send the secret to the untrusted process, and don't send a secret
276 int32 secret = validate_client_ ? 0 : client_secret_;
278 (secret && !m->WriteUInt32(secret))) {
508 int secret;
510 secret = base::RandInt(0, std::numeric_limits<int>::max());
511 } while (secret == 0);
514 return id.append(base::StringPrintf("\\%d", secret));