Searched refs:raw (Results 26 - 50 of 369) sorted by relevance

1234567891011>>

/macosx-10.10/bind9-45.101/bind9/bin/tests/system/masterformat/
H A Dclean.sh20 rm -f ns1/example.db.raw
21 rm -f ns1/large.db ns1/large.db.raw
/macosx-10.10/dcerpc-61/dcerpc/ncklib/
H A Dsec_id.c188 sec_id_pac_format_raw_t *raw; local
190 raw = &pac->pac.raw_pac;
192 if (raw->value != NULL) {
193 RPC_MEM_FREE(raw->value, RPC_C_MEM_UTIL);
194 raw->value = NULL;
197 raw->type = 0;
198 raw->length = 0;
/macosx-10.10/diskdev_cmds-576/fstyp.tproj/
H A Dfstyp_msdos.c49 * prefer to use raw device. TODO: suppose block device is valid but
50 * the corresponding raw device is not valid, then we fail. this is
149 char *newname, *raw; local
161 raw = rawname(newname);
162 if (stat(raw, &stchar) < 0) {
163 perror(raw);
164 fprintf(stderr, "Can't stat %s\n", raw);
168 return (raw);
170 fprintf(stderr, "%s is not a character device\n", raw);
H A Dfstyp_ntfs.c49 * prefer to use raw device. TODO: suppose block device is valid but
50 * the corresponding raw device is not valid, then we fail. this is
149 char *newname, *raw; local
161 raw = rawname(newname);
162 if (stat(raw, &stchar) < 0) {
163 perror(raw);
164 fprintf(stderr, "Can't stat %s\n", raw);
168 return (raw);
170 fprintf(stderr, "%s is not a character device\n", raw);
/macosx-10.10/hfs-285/fstyp_hfs/
H A Dfstyp_hfs.c50 * prefer to use raw device. TODO: suppose block device is valid but
51 * the corresponding raw device is not valid, then we fail. this is
150 char *newname, *raw; local
162 raw = rawname(newname);
163 if (stat(raw, &stchar) < 0) {
164 perror(raw);
165 fprintf(stderr, "Can't stat %s\n", raw);
169 return (raw);
171 fprintf(stderr, "%s is not a character device\n", raw);
/macosx-10.10/bind9-45.101/bind9/lib/dns/
H A Dncache.c392 unsigned char *raw = rdataset->private3; local
395 count = raw[0] * 256 + raw[1];
400 raw += 2;
408 rdataset->private5 = raw;
417 unsigned char *raw; local
424 raw = rdataset->private5;
425 length = raw[0] * 256 + raw[1];
426 raw
434 unsigned char *raw = rdataset->private5; local
458 unsigned char *raw = rdataset->private3; local
468 unsigned char *raw = rdataset->private3; local
578 unsigned char *raw; local
679 unsigned char *raw; local
[all...]
/macosx-10.10/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_markdown_test.rb304 raw("<div>foo</div>"),
306 raw(<<-RAW.chomp))
331 raw("<div>\n\tfoo\n</div>"),
342 raw("<div>\n\t<div>\n\t\t<div>\n\t\t\tfoo\n" +
346 raw("<!-- Comment -->"),
349 raw("<!--\nBlah\nBlah\n-->"),
355 raw("<!-- foo -->"),
361 raw("<hr>"),
362 raw("<hr/>"),
363 raw("<h
[all...]
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dcollationruleparser.cpp291 UnicodeString empty, raw; local
292 i = parseString(skipWhiteSpace(i), raw, errorCode);
294 if(raw.isEmpty()) {
301 while(j < raw.length()) {
302 UChar32 c = raw.char32At(j);
322 i = parseString(i + 1, raw, errorCode);
324 if(raw.isEmpty()) {
328 UChar32 c = raw.char32At(0);
362 CollationRuleParser::parseTailoringString(int32_t i, UnicodeString &raw, UErrorCode &errorCode) { argument
363 i = parseString(skipWhiteSpace(i), raw, errorCod
371 parseString(int32_t i, UnicodeString &raw, UErrorCode &errorCode) argument
462 UnicodeString raw; local
488 UnicodeString raw; local
682 parseReordering(const UnicodeString &raw, UErrorCode &errorCode) argument
[all...]
/macosx-10.10/libclosure-65/objectTests/
H A Dtlctester.mm44 struct timeval raw;
45 gettimeofday(&raw, NULL);
46 return (double)raw.tv_sec + (double)raw.tv_usec/10e6;
/macosx-10.10/ruby-106/ruby/lib/rdoc/markup/
H A Dto_test.rb24 def accept_raw raw
25 @res << raw.parts.join
/macosx-10.10/tcl-105/tcl_ext/expect/expect/example/
H A Dpasswdprompt9 set sttyOld [stty -echo raw]
H A Dftp-inband200 stty -raw echo
213 stty raw -echo
217 stty -raw echo
230 stty raw -echo
234 stty -raw echo
240 stty raw -echo
281 stty -raw echo
283 stty raw -echo
/macosx-10.10/tcl-105/tcl_ext/memchan/memchan/tools/
H A Dhtdocs_regen5 for i in `ls raw/*.exp`
/macosx-10.10/tcl-105/tcl_ext/trf/trf/tools/
H A Dhtdocs_regen5 for i in `ls raw/*.exp`
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/persist/raw/
H A DRawType.java9 package com.sleepycat.persist.raw;
34 * {@link Class} object. However, if this raw type is not the current
58 * information, and a raw value of this type is represented as a simple
62 * {@link #isArray}), or an enum type, and a raw value of this type is
74 * <p>If true is returned, a raw value of this type is represented as a
76 * an <code>int</code> raw value is represented as an
123 * Returns a map of field name to raw field for each non-static
/macosx-10.10/tcl-105/tcl_ext/expect/expect/
H A Dexp_tty.h25 void exp_tty_set(Tcl_Interp *interp, exp_tty *tty, int raw, int echo);
/macosx-10.10/xnu-2782.1.97/osfmk/console/
H A Dserial_protos.h47 int _serial_getc(int unit, int line, boolean_t wait, boolean_t raw);
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libpng/contrib/pngminus/
H A Dpng2pnm.c54 BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file, BOOL raw, BOOL alpha);
65 BOOL raw = TRUE; local
76 raw = FALSE;
79 raw = TRUE;
137 if ((raw) && (fp_wr == stdout))
144 if (png2pnm (fp_rd, fp_wr, fp_al, raw, alpha) == FALSE)
188 BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file, BOOL raw, BOOL alpha) argument
287 raw = FALSE;
348 fprintf (pnm_file, "%s\n", (raw) ? "P5" : "P2");
355 fprintf (pnm_file, "%s\n", (raw)
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/examples/loadables/
H A Dprint.c56 int c, r, nflag, raw, ofd, sflag; local
61 nflag = raw = sflag = 0;
71 raw = 2;
80 raw = 1;
127 if (raw)
/macosx-10.10/ruby-106/ruby/lib/rexml/
H A Dtext.rb19 # If +raw+ is true, then REXML leaves the value alone
20 attr_accessor :raw
67 # +raw+ (nil) This argument can be given three values.
72 # text. If this value is nil (the default), then the raw value of the
73 # parent will be used as the raw value for this node. If there is no raw
87 # supplied text. This argument is only useful if +raw+ is set to false.
93 def initialize(arg, respect_whitespace=false, parent=nil, raw=nil,
96 @raw = false
101 @raw
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/disc/
H A Dsfdcfilter.c35 char raw[4096]; /* raw data buffer */ member in struct:_filter_s
55 /* get some raw data to stuff down the pipe */
57 { if((r = sfrd(f,fi->raw,sizeof(fi->raw),disc)) > 0)
58 { fi->next = fi->raw;
59 fi->endb = fi->raw+r;
177 fi->next = fi->endb = fi->raw;
/macosx-10.10/zlib-55/zlib/contrib/minizip/
H A Dzip.h197 int raw));
210 int raw,
213 Same than zipOpenNewFileInZip, except if raw=1, we write raw file
226 int raw,
243 int raw,
269 int raw,
290 int raw,
329 parameter raw=1 in zipOpenNewFileInZip2
/macosx-10.10/zlib-55/zlib/examples/
H A Dfitblk.c8 Use fixed-size, stack-allocated raw buffers
76 unsigned char raw[RAWLEN]; local
80 def->avail_in = fread(raw, 1, RAWLEN, in);
83 def->next_in = raw;
99 unsigned char raw[RAWLEN]; local
105 inf->next_out = raw;
114 def->next_in = raw;
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/persist/impl/
H A DCatalog.java14 import com.sleepycat.persist.raw.RawObject;
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/persist/model/
H A DEntityModel.java21 import com.sleepycat.persist.raw.RawObject;
22 import com.sleepycat.persist.raw.RawType;
109 * raw type information.
217 * Converts a given raw object to a live object according to the current
220 * <p>The given raw object must conform to the current class definitions.
221 * However, the raw type ({@link RawObject#getType}) is allowed to be from
223 * This allows converting raw objects that are read from one store to live
226 public final Object convertRawObject(RawObject raw) { argument
227 return catalog.convertRawObject(raw, null);

Completed in 357 milliseconds

1234567891011>>