Searched refs:source (Results 126 - 150 of 442) sorted by relevance

1234567891011>>

/freebsd-10.0-release/usr.sbin/jls/
H A Djls.c7 * Redistribution and use in source and binary forms, with or without
10 * 1. Redistributions of source code must retain the above copyright
71 struct jailparam *source, unsigned flags);
237 struct jailparam *source, unsigned flags)
265 if (source != NULL)
266 jailparam_free(source, 1);
289 if (source != NULL) {
290 *param = *source;
236 add_param(const char *name, void *value, size_t valuelen, struct jailparam *source, unsigned flags) argument
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dstack.c36 #include "source.h"
99 int source,
125 int source;
137 print_frame_info (p->fi, p->level, p->source, p->args);
145 If the pc is not at the beginning of the source line,
148 If SOURCE is 1, print the source line as well.
149 If SOURCE is -1, print ONLY the source line. */
152 print_stack_frame (struct frame_info *fi, int level, int source)
158 args.source = source;
124 int source; member in struct:print_stack_frame_args
151 print_stack_frame(struct frame_info *fi, int level, int source) argument
419 print_frame_info(struct frame_info *fi, int level, int source, int args) argument
532 print_frame(struct frame_info *fi, int level, int source, int args, struct symtab_and_line sal) argument
[all...]
/freebsd-10.0-release/contrib/bzip2/
H A Dbzlib.h207 char* source,
217 char* source,
/freebsd-10.0-release/contrib/ntp/include/
H A Dntp_control.h61 #define CTL_SST_TS_UNSPEC 0 /* time source unspecified */
62 #define CTL_SST_TS_ATOM 1 /* time source calibrated atomic */
63 #define CTL_SST_TS_LF 2 /* time source VLF or LF radio */
64 #define CTL_SST_TS_HF 3 /* time source HF radio */
65 #define CTL_SST_TS_UHF 4 /* time source UHF radio */
66 #define CTL_SST_TS_LOCAL 5 /* time source LOCAL */
67 #define CTL_SST_TS_NTP 6 /* time source NTP */
68 #define CTL_SST_TS_UDPTIME 7 /* time source UDP/TIME */
69 #define CTL_SST_TS_WRSTWTCH 8 /* time source is wristwatch */
70 #define CTL_SST_TS_TELEPHONE 9 /* time source i
[all...]
/freebsd-10.0-release/contrib/subversion/
H A Dgen-make.py73 for source in target_dict[target]:
74 print(" " + _objinfo(source))
/freebsd-10.0-release/crypto/openssl/util/
H A Dmkerr.pl62 -rebuild Rebuild all header and C source files, irrespective of the
85 -nostatic Generates a different source code, where these additional
101 source files as assigned to each library through the config
118 @source = (<crypto/*.c>, <crypto/*/*.c>, <ssl/*.c>);
120 @source = @ARGV;
313 # Scan each C source file and look for function and reason codes
325 foreach $file (@source) {
326 # Don't parse the error source file.
329 open(IN, "<$file") || die "Can't open source file $file\n";
331 # skip obsoleted source file
[all...]
/freebsd-10.0-release/sys/boot/arm/ixp425/boot2/
H A Dixp425_board.c4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
662 avila_read(char *dest, unsigned source, unsigned length) argument
664 if (dskinf.use_lba == 0 && source == 0)
665 source++;
668 (u_int32_t)dest, source, length);
672 cfcmd(ATA_READ, (source >> 8) & 0xffff, source >> 24,
673 source & 0xff, 1, 0);
681 source
[all...]
/freebsd-10.0-release/sys/boot/i386/kgzldr/
H A Dsio.s5 # Redistribution and use in source and binary forms, with or without
8 # 1. Redistributions of source code must retain the above copyright
H A Dstart.s5 # Redistribution and use in source and binary forms, with or without
8 # 1. Redistributions of source code must retain the above copyright
/freebsd-10.0-release/sys/boot/pc98/boot0.5/
H A Dstart.s6 # Redistribution and use in source and binary forms, with or without
10 # 1. Redistributions of source code must retain the above copyright
H A Dsupport.s6 # Redistribution and use in source and binary forms, with or without
10 # 1. Redistributions of source code must retain the above copyright
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Ddsl_dir.h128 int dsl_dir_set_quota(const char *ddname, zprop_source_t source,
130 int dsl_dir_set_reservation(const char *ddname, zprop_source_t source,
/freebsd-10.0-release/sys/dev/random/
H A Dlive_entropy_sources.c6 * Redistribution and use in source and binary forms, with or without
9 * 1. Redistributions of source code must retain the above copyright
164 * source.
173 event.source = les->rsource->source;
H A Dnehemiah.c5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
57 .source = RANDOM_PURE_NEHEMIAH,
67 /* This H/W source never stores more than 8 bytes in one go */
/freebsd-10.0-release/sys/dev/sound/pcm/
H A Dsndstat.h5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
134 while (f->source != NULL) \
135 f = f->source; \
/freebsd-10.0-release/sys/ofed/drivers/infiniband/hw/mthca/
H A Dmthca_dev.h11 * COPYING in the main directory of this source tree, or the
14 * Redistribution and use in source and binary forms, with or
18 * - Redistributions of source code must retain the above
388 #define MTHCA_GET(dest, source, offset) \
390 void *__p = (char *) (source) + (offset); \
400 #define MTHCA_PUT(dest, source, offset) \
403 switch (sizeof(source)) { \
404 case 1: *(u8 *) __d = (source); break; \
405 case 2: *(__be16 *) __d = cpu_to_be16(source); break; \
406 case 4: *(__be32 *) __d = cpu_to_be32(source); brea
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/Analysis/
H A DPathProfileInfo.h41 ProfilePathEdge(BasicBlock* source, BasicBlock* target,
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Frontend/
H A DChainedIncludesSource.cpp70 OwningPtr<ChainedIncludesSource> source(new ChainedIncludesSource());
159 source->CIs.push_back(Clang.take());
170 source->FinalReader.reset(Reader.take());
171 return source.take();
/freebsd-10.0-release/contrib/smbfs/lib/smb/
H A Dmbuf.c5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
284 mb_put_mem(struct mbdata *mbp, const char *source, size_t size) argument
305 if (source) {
306 bcopy(source, dst, cplen);
307 source += cplen;
/freebsd-10.0-release/contrib/subversion/subversion/svnserve/
H A Dserver.h173 apr_size_t escape_errorlog_item(char *dest, const char *source,
/freebsd-10.0-release/share/mk/
H A Dbsd.dtrace.mk9 # Redistribution and use in source and binary forms, with or without
12 # 1. Redistributions of source code must retain the above copyright
/freebsd-10.0-release/sys/dev/sfxge/
H A Dsfxge_rx.h8 * Redistribution and use in source and binary forms, with or without
11 * 1. Redistributions of source code must retain the above copyright
69 * @source: Source TCP port number
90 uint16_t source, dest; member in struct:sfxge_lro_conn
/freebsd-10.0-release/sys/isa/
H A Disareg.h8 * Redistribution and use in source and binary forms, with or without
11 * 1. Redistributions of source code must retain the above copyright
37 #error isareg.h is included from PC-9801 source
/freebsd-10.0-release/tools/tools/editing/
H A Dfreebsd.vim4 " Redistribution and use in source and binary forms, with or without
7 " 1. Redistributions of source code must retain the above copyright
/freebsd-10.0-release/usr.bin/dc/
H A Ddc.c42 static struct source src;

Completed in 144 milliseconds

1234567891011>>