Lines Matching refs:propertyBuffer
678 if (content == NULL || content->propertyBuffer == NULL) {
683 int ret = memcpy_s(content->propertyBuffer, MAX_MEM_SIZE, &property->message->msgHeader, sizeof(AppSpawnMsg));
685 ret = memcpy_s((char *)content->propertyBuffer + sizeof(AppSpawnMsg), MAX_MEM_SIZE - sizeof(AppSpawnMsg),
691 munmap((char *)content->propertyBuffer, MAX_MEM_SIZE);
692 content->propertyBuffer = NULL;
731 if (content != NULL && content->propertyBuffer != NULL) {
732 ret = munmap(content->propertyBuffer, MAX_MEM_SIZE);
734 content->propertyBuffer = NULL;
816 APPSPAWN_CHECK_ONLY_EXPER(content->propertyBuffer == NULL, ClearMMAP(client->id));
817 content->propertyBuffer = GetMapMem(property->client.id, "prefork", MAX_MEM_SIZE, false, false);
818 APPSPAWN_CHECK(content->propertyBuffer != NULL, return -1, "GetPreforkMem failed");