adr.c revision 7883e825152992a0f20c3f52f7c4bb902a56205c
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
#ifndef lint
static char sccsid[] = "%Z%%M% %I% %E% SMI";
#endif
/*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
/*
* Adr memory based encoding
*/
#include <bsm/audit_record.h>
void
#ifdef __STDC__
#else
char *p;
#endif
{
adr->adr_stream = p;
}
int
#ifdef __STDC__
#else
#endif
{
}
/*
* adr_char - pull out characters
*/
void
#ifdef __STDC__
#else
char *cp;
int count;
#endif
{
while (count-- > 0)
}
/*
* adr_short - pull out shorts
*/
void
#ifdef __STDC__
#else
short *sp;
int count;
#endif
{
}
}
/*
* adr_int32 - pull out uint32
*/
#ifdef __STDC__
void
#else
void adr_long();
void
int count;
#endif
{
int i; /* index for counting */
uint32_t l; /* value for shifting */
l <<= 8;
}
}
}
/*
* adr_int64 - pull out uint64_t
*/
void
#ifdef __STDC__
#else
int count;
#endif
{
int i; /* index for counting */
uint64_t l; /* value for shifting */
l <<= 8;
}
}
}