Searched refs:lf (Results 1 - 25 of 108) sorted by relevance

12345

/macosx-10.10/tcl-105/tk/tk/tests/ttk/
H A Dlabelframe.test10 pack [ttk::labelframe .lf] -expand true -fill both
14 ttk::frame .lf.t
15 ttk::checkbutton .lf.t.cb
16 .lf configure -labelwidget .lf.t.cb
18 -cleanup { destroy .lf.t } ;
21 toplevel .lf.t
22 .lf configure -labelwidget .lf.t
24 -cleanup { destroy .lf
[all...]
/macosx-10.10/cups-408/cups/ppdc/
H A Dppdc-driver.cxx397 const char *lf; // Linefeed character to use local
411 lf = "\n";
413 lf = "\r";
415 lf = "\r\n";
418 cupsFilePrintf(fp, "*PPD-Adobe: \"4.3\"%s", lf);
420 model_name->value, lf);
423 ".%s", lf);
427 cupsFilePrintf(fp, "*%% %s%s", catalog->find_message(s->value), lf);
428 cupsFilePrintf(fp, "*FormatVersion: \"4.3\"%s", lf);
429 cupsFilePrintf(fp, "*FileVersion: \"%s\"%s", version->value, lf);
[all...]
/macosx-10.10/lsof-53/lsof/dialects/darwin/libproc/
H A Dmachine.h239 #define CLRLFILEADD(lf) if (lf->V_path) { \
240 (void) free((FREE_P *)lf->V_path); \
241 lf->V_path = (char *)NULL; \
243 lf->fileport = MACH_PORT_NULL; \
244 lf->guardflags = 0;
H A Ddfile.c257 print_nm(lf)
258 struct lfile *lf;
265 if (lf->fileport) extra++;
268 if (lf->guardflags) extra++;
275 if (lf->fileport)
276 (void) printf("fileport=0x%04x", lf->fileport);
283 if (lf->guardflags) {
289 gf = lf->guardflags;
323 print_v_path(lf)
324 struct lfile *lf;
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/iwidgets/sample/
H A Dlabeledframe.rb5 lf = Tk::Iwidgets::Labeledframe.new(:labeltext=>'Entry Frame', :labelpos=>:n)
6 lf.pack(:fill=>:both, :expand=>true, :padx=>10, :pady=>10)
8 cs = lf.child_site
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dkern_lockf.c373 struct lockf **lf = lock->lf_head; local
375 while (*lf != NOLOCKF) {
377 if ((*lf == lock) ||
378 ((*lf)->lf_id != lock->lf_id) ||
379 ((*lf)->lf_type != lock->lf_type)) {
380 lf = &(*lf)->lf_next;
388 if ((*lf)->lf_end != -1 &&
389 ((*lf)->lf_end + 1) == lock->lf_start) {
390 struct lockf *adjacent = *lf;
829 struct lockf *lf = *head; local
971 struct lockf **prev, *overlap, *lf = *(lock->lf_head); local
1041 lf_findoverlap(struct lockf *lf, struct lockf *lock, int type, struct lockf ***prev, struct lockf **overlap) argument
1325 struct lockf *lf, *blk; local
[all...]
/macosx-10.10/ICU-531.30/icuSources/samples/layout/
H A DGDIFontInstance.cpp109 LOGFONT lf; local
138 lf.lfHeight = - pt.y;
139 lf.lfWidth = 0;
140 lf.lfEscapement = 0;
141 lf.lfOrientation = 0;
142 lf.lfWeight = 0;
143 lf.lfItalic = 0;
144 lf.lfUnderline = 0;
145 lf.lfStrikeOut = 0;
146 lf
194 LOGFONTA lf; local
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/port/
H A Dlcgen.c283 FILE* lf; local
305 if (!(lf = fopen(lib, "w")))
338 fprintf(lf, "/* : : generated by %s : : */\n", command);
339 fprintf(lf, "\n");
340 fprintf(lf, "#include \"lclib.h\"\n");
341 fprintf(lf, "#include \"lclang.h\"\n");
342 fprintf(lf, "\n");
511 fprintf(lf, "\nconst Lc_attribute_t attribute_%s[] =\n{\n", lp->link.code);
522 fprintf(lf, "{\"%s\",", b);
524 fprintf(lf, "LC
[all...]
/macosx-10.10/lsof-53/lsof/dialects/darwin/kmem/
H A Dmachine.h234 #define CLRLFILEADD(lf) if (lf->V_path) { \
235 (void) free((FREE_P *)lf->V_path); \
236 lf->V_path = (char *)NULL; \
H A Ddnode.c353 struct lockf lf, *lff, *lfp; local
580 if (kread((KA_T)lfp, (char *)&lf, sizeof(lf)))
583 switch (lf.lf_flags & (F_FLOCK|F_POSIX)) {
585 if (Cfp && (struct file *)lf.lf_id == Cfp)
589 if ((KA_T)lf.lf_id == Kpa)
595 if (lf.lf_start == (off_t)0
596 && lf.lf_end == 0xffffffffffffffffLL)
600 if (lf.lf_type == F_RDLCK)
602 else if (lf
[all...]
H A Ddfile.c118 print_v_path(lf)
119 struct lfile *lf;
121 if (lf->V_path) {
122 safestrprt(lf->V_path, stdout, 0);
/macosx-10.10/gnudiff-19/diffutils/src/
H A Dsdiff.c355 lf_init (struct line_filter *lf, FILE *infile)
357 lf->infile = infile;
358 lf->bufpos = lf->buffer = lf->buflim = xmalloc (SDIFF_BUFSIZE + 1);
359 lf->buflim[0] = '\n';
364 lf_refill (struct line_filter *lf)
366 size_t s = ck_fread (lf->buffer, SDIFF_BUFSIZE, lf->infile);
367 lf
354 lf_init(struct line_filter *lf, FILE *infile) argument
363 lf_refill(struct line_filter *lf) argument
375 lf_copy(struct line_filter *lf, lin lines, FILE *outfile) argument
401 lf_skip(struct line_filter *lf, lin lines) argument
421 lf_snarf(struct line_filter *lf, char *buffer, size_t bufsize) argument
[all...]
/macosx-10.10/tcl-105/tcl/tcl/tools/
H A DeolFix.tcl70 -lf { set ::EOL::outMode lf }
/macosx-10.10/tcl-105/tcl84/tcl/tools/
H A DeolFix.tcl70 -lf { set ::EOL::outMode lf }
/macosx-10.10/tcl-105/tcl_ext/snack/snack/demos/tcl/
H A Dgenerator2.tcl52 upvar $f lf
53 set type $lf(type)
69 $lf(generator) configure $lf(freq) $lf(ampl) $shape $type -1
/macosx-10.10/xnu-2782.1.97/bsd/netinet/
H A Dtcp_lro.c772 struct lro_flow *lf; local
782 lf = &lro_flow_list[flow_id];
783 if ((lf->lr_faddr.s_addr == ip_hdr->ip_src.s_addr) &&
784 (lf->lr_laddr.s_addr == ip_hdr->ip_dst.s_addr) &&
785 (lf->lr_fport == tcp_hdr->th_sport) &&
786 (lf->lr_lport == tcp_hdr->th_dport)) {
787 if ((lf->lr_tcphdr == NULL) &&
788 (lf->lr_seq != (tcp_hdr->th_seq + tlen))) {
789 lf->lr_seq = tcp_hdr->th_seq + tlen;
791 lf
825 struct lro_flow *lf; local
855 struct lro_flow *lf; local
[all...]
/macosx-10.10/cups-408/cups/scheduler/
H A Dlog.c63 cupsdCheckLogFile(cups_file_t **lf, /* IO - Log file */ argument
76 if (!lf || !logname || !logname[0])
83 if (!*lf ||
84 (strncmp(logname, "/dev/", 5) && cupsFileTell(*lf) > MaxLogSize &&
139 if (!*lf)
145 if ((*lf = cupsFileOpen(filename, "a")) == NULL)
167 *lf = cupsFileOpen(filename, "a");
170 if (*lf == NULL)
188 fchown(cupsFileNumber(*lf), RunUser, Group);
189 fchmod(cupsFileNumber(*lf), LogFilePer
[all...]
/macosx-10.10/lsof-53/lsof/
H A Dproc.c46 _PROTOTYPE(static int is_file_sel,(struct lproc *lp, struct lfile *lf));
539 struct lfile *lf, *nf; local
541 for (lf = lp->file; lf; lf = nf) {
542 if (lf->dev_ch) {
543 (void) free((FREE_P *)lf->dev_ch);
544 lf->dev_ch = (char *)NULL;
546 if (lf->nm) {
547 (void) free((FREE_P *)lf
[all...]
H A Dproto.h236 _PROTOTYPE(extern char *HASPRINTDEV,(struct lfile *lf, dev_t *dev));
240 _PROTOTYPE(extern char *HASPRINTINO,(struct lfile *lf));
244 _PROTOTYPE(extern void HASPRINTNM,(struct lfile *lf));
248 _PROTOTYPE(extern char *HASPRINTOFF,(struct lfile *lf, int ty));
252 _PROTOTYPE(extern char *HASPRINTSZ,(struct lfile *lf));
256 _PROTOTYPE(extern int HASPRIVNMCACHE,(struct lfile *lf));
/macosx-10.10/lukemftp-14/tnftp/src/
H A Dcomplete.c370 const LineInfo *lf; local
374 lf = el_line(el);
375 len = lf->lastchar - lf->buffer;
378 (void)strlcpy(line, lf->buffer, len + 1);
379 cursor_pos = line + (lf->cursor - lf->buffer);
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/ico/
H A Dico0.tcl286 fconfigure $fh -eofchar {} -encoding binary -translation lf
298 fconfigure $ifh -eofchar {} -encoding binary -translation lf
701 fconfigure $fh -eofchar {} -encoding binary -translation lf
783 fconfigure $fh -eofchar {} -encoding binary -translation lf
861 fconfigure $fh -eofchar {} -encoding binary -translation lf
873 fconfigure $fh -eofchar {} -encoding binary -translation lf
878 fconfigure $fh -eofchar {} -encoding binary -translation lf
969 fconfigure $fh -eofchar {} -encoding binary -translation lf
992 fconfigure $fh -eofchar {} -encoding binary -translation lf
1006 fconfigure $fh -eofchar {} -encoding binary -translation lf
[all...]
/macosx-10.10/BerkeleyDB-21/db/test/
H A Drep066.tcl156 set lf [stat_field $2ndenv log_stat "Times log flushed to disk"]
159 error_check_bad log_flush $lf $lf2
217 set lf [stat_field $2ndenv log_stat "Times log flushed to disk"]
220 error_check_bad log_flush2 $lf $lf2
/macosx-10.10/Heimdal-398.1.2/lib/libedit/examples/
H A Dtc1.c98 const LineInfo *lf = el_line(el); local
105 for (ptr = lf->cursor - 1;
106 !isspace((unsigned char)*ptr) && ptr > lf->buffer; ptr--)
108 len = lf->cursor - ++ptr;
H A Dwtc1.c61 const LineInfoW *lf = el_wline(el); local
66 for (ptr = lf->cursor -1; !iswspace(*ptr) && ptr > lf->buffer; --ptr)
68 len = lf->cursor - ++ptr;
/macosx-10.10/OpenSSH-189/openssh/regress/
H A DMakefile116 ${TEST_SSH_SSHKEYGEN} -lf ${.CURDIR}/rsa_openssh.pub |\
133 ${TEST_SSH_SSHKEYGEN} -lf $(OBJ)/t7.out > /dev/null
140 ${TEST_SSH_SSHKEYGEN} -lf $(OBJ)/t8.out > /dev/null
149 ${TEST_SSH_SSHKEYGEN} -lf $(OBJ)/t9.out > /dev/null

Completed in 226 milliseconds

12345