Searched refs:ofn (Results 1 – 7 of 7) sorted by relevance
/external/libpng/contrib/visupng/ |
D | PngFile.c | 27 static OPENFILENAME ofn; variable 55 ofn.lStructSize = sizeof (OPENFILENAME); in PngFileInitialize() 56 ofn.hwndOwner = hwnd; in PngFileInitialize() 57 ofn.hInstance = NULL; in PngFileInitialize() 58 ofn.lpstrFilter = szFilter; in PngFileInitialize() 59 ofn.lpstrCustomFilter = NULL; in PngFileInitialize() 60 ofn.nMaxCustFilter = 0; in PngFileInitialize() 61 ofn.nFilterIndex = 0; in PngFileInitialize() 62 ofn.lpstrFile = NULL; /* Set in Open and Close functions */ in PngFileInitialize() 63 ofn.nMaxFile = MAX_PATH; in PngFileInitialize() [all …]
|
/external/icu/icu4c/source/samples/layout/ |
D | layout.cpp | 263 OPENFILENAMEA ofn; in WndProc() local 268 ofn.lStructSize = sizeof (OPENFILENAMEA); in WndProc() 269 ofn.hwndOwner = hwnd; in WndProc() 270 ofn.hInstance = NULL; in WndProc() 271 ofn.lpstrFilter = szFilter; in WndProc() 272 ofn.lpstrCustomFilter = NULL; in WndProc() 273 ofn.nMaxCustFilter = 0; in WndProc() 274 ofn.nFilterIndex = 0; in WndProc() 275 ofn.lpstrFile = szFileName; in WndProc() 276 ofn.nMaxFile = MAX_PATH; in WndProc() [all …]
|
D | clayout.c | 265 OPENFILENAMEA ofn; in WndProc() local 270 ofn.lStructSize = sizeof (OPENFILENAMEA); in WndProc() 271 ofn.hwndOwner = hwnd; in WndProc() 272 ofn.hInstance = NULL; in WndProc() 273 ofn.lpstrFilter = szFilter; in WndProc() 274 ofn.lpstrCustomFilter = NULL; in WndProc() 275 ofn.nMaxCustFilter = 0; in WndProc() 276 ofn.nFilterIndex = 0; in WndProc() 277 ofn.lpstrFile = szFileName; in WndProc() 278 ofn.nMaxFile = MAX_PATH; in WndProc() [all …]
|
/external/libvpx/libvpx/build/make/ |
D | rtcd.pl | 83 my $ofn = eval "\$${fn}_${opt}"; 84 next if !$ofn; 91 if ($best_ofn && "$best_ofn" ne "$ofn") { 134 my $ofn = eval "\$${fn}_${opt}"; 135 next if !$ofn; 156 my $ofn = eval "\$${fn}_${opt}"; 157 next if !$ofn; 158 print "$rtyp ${ofn}($args);\n"; 179 my $ofn = eval "\$${fn}_${opt}"; 180 next if !$ofn; [all …]
|
/external/llvm/cmake/modules/ |
D | TableGen.cmake | 2 # Extra parameters for `tblgen' may come after `ofn' parameter. 5 function(tablegen project ofn) 26 add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp 31 -o ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp 37 COMMENT "Building ${ofn}..." 39 add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${ofn} 44 ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp 45 ${CMAKE_CURRENT_BINARY_DIR}/${ofn} 46 DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp 47 COMMENT "Updating ${ofn}..." [all …]
|
/external/blktrace/ |
D | blktrace.c | 266 char ofn[MAXPATHLEN + 64]; member 1469 char *dst = iop->ofn; in fill_ofname() 1472 len = snprintf(iop->ofn, sizeof(iop->ofn), "%s/", output_dir); in fill_ofname() 1474 len = snprintf(iop->ofn, sizeof(iop->ofn), "./"); in fill_ofname() 1484 if (stat(iop->ofn, &sb) < 0) { in fill_ofname() 1488 iop->ofn, errno, strerror(errno)); in fill_ofname() 1496 if (mkdir(iop->ofn, 0755) < 0 && errno != EEXIST) { in fill_ofname() 1499 iop->ofn, errno, strerror(errno)); in fill_ofname() 1505 snprintf(iop->ofn + len, sizeof(iop->ofn), "%s.blktrace.%d", in fill_ofname() 1508 snprintf(iop->ofn + len, sizeof(iop->ofn), "%s.blktrace.%d", in fill_ofname() [all …]
|
/external/openssh/ |
D | channels.c | 776 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx) in channel_register_filter() argument 785 c->output_filter = ofn; in channel_register_filter()
|