Home | History | Annotate | Download | only in keystore

Lines Matching defs:in

5  * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
107 int in = TEMP_FAILURE_RETRY(open(src->getMasterKeyFileName(), O_RDONLY));
108 if (in < 0) {
112 size_t length = readFully(in, (uint8_t*)&rawBlob, sizeof(rawBlob));
113 if (close(in) != 0) {
143 int in = TEMP_FAILURE_RETRY(open(mMasterKeyFile, O_RDONLY));
144 if (in < 0) {
151 size_t length = readFully(in, (uint8_t*)&rawBlob, sizeof(rawBlob));
152 if (close(in) != 0) {