Home | History | Annotate | Download | only in utilities

Lines Matching refs:Source

22  * copy of the source code appearing in this file ("Covered Code") an
42 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
43 * Redistribution of source code of any substantial portion of the Covered
44 * Code or modification with rights to further distribute source must include
54 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
55 * Redistribution of source code of any substantial portion of the Covered
56 * Code or modification without rights to further distribute source must
59 * addition, Licensee may not authorize further sublicense of source of any
119 * Redistribution and use in source and binary forms, with or without
122 * 1. Redistributions of source code must retain the above copyright
168 * PARAMETERS: SrcString - The source string to convert
204 * PARAMETERS: SrcString - The source string to convert
299 char *Source)
302 if (strlen (Source) >= DestSize)
307 strcpy (Dest, Source);
315 char *Source)
318 if ((strlen (Dest) + strlen (Source)) >= DestSize)
323 strcat (Dest, Source);
331 char *Source,
337 ActualTransferLength = ACPI_MIN (MaxTransferLength, strlen (Source));
344 strncat (Dest, Source, MaxTransferLength);
351 const char *Source,
356 strncpy (Dest, Source, DestSize);