Lines Matching defs:from

104  * This tunable allows us to ignore inode numbers from rrip-1.12.
117 static int uppercase_cp(char *from, char *to, int size);
119 static int hs_iso_copy(char *from, char *to, int size);
231 * Remove from chain
274 * Get an hsnode from the front of the free list.
288 * cache), call kmem_cache_alloc to get a new hsnode from
348 * Remove an hsnode from the free list.
415 * remove from free list
481 * above). So remove from free list and
550 * from the rrip data (use_rrip_inodes != 0), use that data. If the
671 /* remove this node from the hash list, if it's there */
820 * remove it from the specified name
1132 * Called from hsfs_readdir() via hs_parsedir()
1135 hs_namecopy(char *from, char *to, int size, ulong_t flags)
1146 if (*from == '\0') {
1150 } else if (*from == '\1') {
1162 c = from[i];
1189 * Called from hsfs_readdir() via hs_parsedir()
1192 hs_jnamecopy(char *from, char *to, int size, int maxsize, ulong_t flags)
1202 if (*from == '\0') {
1206 } else if (*from == '\1') {
1216 c = (from[i++] & 0xFF) << 8;
1217 c |= from[i] & 0xFF;
1248 * Called from process_dirblock()
1250 * to create an intermedia name from on disk file names for
1254 uppercase_cp(char *from, char *to, int size)
1261 c = *from++;
1277 * Called from process_dirblock()
1279 * to create an intermedia name from on disk file names for
1283 hs_joliet_cp(char *from, char *to, int size)
1292 *to = *from;
1296 c = (*from++ & 0xFF) << 8;
1297 c |= *from++ & 0xFF;
1332 * Called from hs_dirlook() and rrip_namecopy()
1333 * to create an intermediate name from the callers name from hsfs_lookup()
1334 * XXX Is the call from rrip_namecopy() OK?
1337 hs_uppercase_copy(char *from, char *to, int size)
1344 if (size == 1 && *from == '.') {
1347 } else if (size == 2 && *from == '.' && *(from+1) == '.') {
1353 c = *from++;
1370 * Called from hs_dirlook()
1371 * to create an intermediate name from the callers name from hsfs_lookup()
1374 hs_iso_copy(char *from, char *to, int size)
1381 if (size == 1 && *from == '.') {
1384 } else if (size == 2 && *from == '.' && *(from+1) == '.') {
1390 c = *from++;
1559 * from the SUA area to rrip_name_str. If no Alternate
1716 * Strip trailing nulls or spaces from the name;
1782 * The code has been taken from udfs/udf_subr.c