Lines Matching refs:in
4 * you may not use this file except in compliance with the License.
9 * Unless required by applicable law or agreed to in writing, software
274 LOG_INFO("mount all-in-one executor");
277 LOG_INFO("all-in-one executor is not found");
284 LOG_ERROR("identification only supports all in one");
377 ResultCode CopyTemplateArrays(const Uint64Array *in, Uint64Array *out)
379 if (!IsTemplateArraysValid(in) || out == NULL || out->data != NULL) {
383 if (in->len == 0) {
387 out->len = in->len;
394 if (memcpy_s(out->data, (sizeof(uint64_t) * out->len), in->data, (sizeof(uint64_t) * in->len)) != EOK) {