Home
last modified time | relevance | path

Searched refs:od (Results 1 – 25 of 32) sorted by relevance

12

/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_odir.c879 od->d_offset = od->d_cookies[resume->or_idx]; in smb_odir_resume_at()
895 od->d_offset = od->d_last_cookie; in smb_odir_resume_at()
1116 if (od->d_bufptr >= od->d_buf + od->d_bufsize) in smb_odir_next_odirent()
1125 od->d_bufsize = sizeof (od->d_buf); in smb_odir_next_odirent()
1128 od->d_buf, &od->d_bufsize, &eof, rddir_flags, od->d_cred); in smb_odir_next_odirent()
1140 od->d_bufptr = od->d_buf; in smb_odir_next_odirent()
1144 od->d_offset = od->d_edp->ed_off; in smb_odir_next_odirent()
1146 od->d_offset = od->d_dp->d_off; in smb_odir_next_odirent()
1216 od->d_dnode, od->d_pattern, &fnode); in smb_odir_single_fileinfo()
1347 od->d_tree->t_snode->vp, &attr, od->d_cred); in smb_odir_wildcard_fileinfo()
[all …]
H A Dsmb_find.c231 smb_odir_t *od; in smb_com_search() local
303 odid = od->d_odid; in smb_com_search()
312 if (od == NULL) { in smb_com_search()
417 smb_odir_t *od; in smb_com_find() local
459 odid = od->d_odid; in smb_com_find()
468 if (od == NULL) { in smb_com_find()
573 smb_odir_t *od; in smb_com_find_close() local
597 if (od == NULL) { in smb_com_find_close()
603 smb_odir_close(od); in smb_com_find_close()
638 smb_odir_t *od; in smb_com_find_unique() local
[all …]
H A Dsmb_trans2_find.c287 smb_odir_t *od; in smb_com_trans2_find_first2() local
333 if (od == NULL) in smb_com_trans2_find_first2()
339 smb_odir_close(od); in smb_com_trans2_find_first2()
345 smb_odir_close(od); in smb_com_trans2_find_first2()
354 smb_odir_close(od); in smb_com_trans2_find_first2()
436 smb_odir_t *od; in smb_com_trans2_find_next2() local
465 if (od == NULL) { in smb_com_trans2_find_next2()
499 smb_odir_close(od); in smb_com_trans2_find_next2()
1007 smb_odir_t *od; in smb_com_find_close2() local
1013 if (od == NULL) { in smb_com_find_close2()
[all …]
H A Dsmb2_query_dir.c84 smb_odir_t *od = NULL; in smb2_query_dir() local
219 if ((od = of->f_odir) == NULL) { in smb2_query_dir()
221 of->f_odir = od; in smb2_query_dir()
224 if (od == NULL) { in smb2_query_dir()
234 smb_odir_reopen(od, pattern, sattr); in smb2_query_dir()
249 smb_odir_resume_at(od, &odir_resume); in smb2_query_dir()
250 of->f_seek_pos = od->d_offset; in smb2_query_dir()
257 of->f_seek_pos = od->d_offset; in smb2_query_dir()
335 rc = smb_odir_read_fileinfo(sr, od, in smb2_find_entries()
352 (void) smb2_aapl_get_macinfo(sr, od, in smb2_find_entries()
[all …]
H A Dsmb2_aapl.c166 smb2_aapl_get_macinfo(smb_request_t *sr, smb_odir_t *od, in smb2_aapl_get_macinfo() argument
178 rc = smb_fsop_lookup(sr, od->d_cred, SMB_CASE_SENSITIVE, in smb2_aapl_get_macinfo()
179 od->d_tree->t_snode, od->d_dnode, fileinfo->fi_name, &fnode); in smb2_aapl_get_macinfo()
184 smb_fsop_eaccess(sr, od->d_cred, fnode, &mi->mi_maxaccess); in smb2_aapl_get_macinfo()
193 od->d_dnode, tbuf, &snode); in smb2_aapl_get_macinfo()
212 od->d_dnode, tbuf, &snode); in smb2_aapl_get_macinfo()
H A Dsmb_delete.c287 smb_odir_t *od; in smb_delete_multiple_files() local
298 SMB_SEARCH_ATTRIBUTES, 0, &od); in smb_delete_multiple_files()
305 rc = smb_delete_find_fname(sr, od, namebuf, MAXNAMELEN); in smb_delete_multiple_files()
318 smb_odir_close(od); in smb_delete_multiple_files()
319 smb_odir_release(od); in smb_delete_multiple_files()
338 smb_odir_close(od); in smb_delete_multiple_files()
339 smb_odir_release(od); in smb_delete_multiple_files()
344 smb_odir_close(od); in smb_delete_multiple_files()
345 smb_odir_release(od); in smb_delete_multiple_files()
371 smb_delete_find_fname(smb_request_t *sr, smb_odir_t *od, char *namebuf, int len) in smb_delete_find_fname() argument
[all …]
H A Dsmb_tree.c1349 smb_odir_t *od; in smb_tree_lookup_odir() local
1359 while (od) { in smb_tree_lookup_odir()
1362 od = smb_llist_next(od_list, od); in smb_tree_lookup_odir()
1364 if (od == NULL) in smb_tree_lookup_odir()
1372 od = NULL; in smb_tree_lookup_odir()
1376 od = NULL; in smb_tree_lookup_odir()
1380 return (od); in smb_tree_lookup_odir()
1405 smb_odir_t *od; in smb_tree_close_odirs() local
1414 od != NULL; in smb_tree_close_odirs()
1415 od = smb_llist_next(od_list, od)) { in smb_tree_close_odirs()
[all …]
H A Dsmb_query_fileinfo.c625 smb_odir_t *od = NULL; in smb_query_stream_info() local
682 status = smb_odir_openat(sr, fnode, &od, B_TRUE); in smb_query_stream_info()
698 rc = smb_odir_read_streaminfo(sr, od, sinfo, &eos); in smb_query_stream_info()
746 if (od) { in smb_query_stream_info()
747 smb_odir_close(od); in smb_query_stream_info()
748 smb_odir_release(od); in smb_query_stream_info()
H A Dsmb2_durable.c355 smb_odir_t *od = NULL; in smb2_dh_import_share() local
399 if (smb_odir_openat(sr, snode, &od, B_FALSE) != 0) { in smb2_dh_import_share()
423 rc = smb_odir_read_streaminfo(sr, od, str_info, &eof); in smb2_dh_import_share()
458 if (od != NULL) { in smb2_dh_import_share()
459 smb_odir_close(od); in smb2_dh_import_share()
460 smb_odir_release(od); in smb2_dh_import_share()
H A Dsmb_fsops.c866 smb_odir_t *od; in smb_fsop_remove_streams() local
894 status = smb_odir_openat(sr, fnode, &od, B_FALSE); in smb_fsop_remove_streams()
909 rc = smb_odir_read(sr, od, odirent, &eos); in smb_fsop_remove_streams()
912 (void) smb_vop_remove(od->d_dnode->vp, odirent->od_name, in smb_fsop_remove_streams()
919 smb_odir_close(od); in smb_fsop_remove_streams()
920 smb_odir_release(od); in smb_fsop_remove_streams()
/illumos-gate/usr/src/boot/common/
H A Ddisk.c85 struct open_disk *od; in ptblread() local
109 struct open_disk *od; in ptable_print() local
165 struct open_disk *od; in disk_print() local
179 struct open_disk *od; in disk_read() local
192 struct open_disk *od; in disk_write() local
207 if (od == NULL) in disk_ioctl()
218 *(uint64_t *)data = od->entrysize * od->sectorsize; in disk_ioctl()
242 if (od == NULL) { in disk_open()
247 od->entrysize = 0; in disk_open()
370 free(od); in disk_open()
[all …]
/illumos-gate/usr/src/cmd/ztest/
H A Dztest.c2201 error = zap_lookup(zd->zd_os, od->od_dir, od->od_name, in ztest_lookup()
2264 od->od_type = od->od_crtype; in ztest_create()
2265 od->od_blocksize = od->od_crblocksize; in ztest_create()
2266 od->od_gen = od->od_crgen; in ztest_create()
4147 int batchsize = sizeof (od) / sizeof (od[0]); in ztest_dmu_object_alloc_free()
4158 if (ztest_object_init(zd, od, sizeof (od), B_TRUE) != 0) in ztest_dmu_object_alloc_free()
4237 if (ztest_object_init(zd, od, sizeof (od), B_FALSE) != 0) in ztest_dmu_read_write()
4509 if (ztest_object_init(zd, od, sizeof (od), B_FALSE) != 0) in ztest_dmu_read_write_zcopy()
4711 if (ztest_object_init(zd, od, sizeof (od), B_FALSE) != 0) in ztest_dmu_write_parallel()
4956 if (ztest_object_init(zd, od, sizeof (od), B_FALSE) != 0) in ztest_zap_parallel()
[all …]
/illumos-gate/usr/src/cmd/od/
H A DMakefile16 PROG= od
19 OBJS= od.o
/illumos-gate/usr/src/cmd/sendmail/db/hash/
H A Dhash_dup.c573 HOFFDUP od; local
580 od.type = H_OFFDUP;
581 UMRW(od.unused[0]);
582 UMRW(od.unused[1]);
583 UMRW(od.unused[2]);
584 od.pgno = pgno;
587 new_dbt.data = &od;
612 memcpy(P_ENTRY(pagep, ndx), &od, HOFFDUP_SIZE);
/illumos-gate/usr/src/uts/common/io/overlay/
H A Doverlay_mux.c92 overlay_dev_t od, *odd; in overlay_mux_recv() local
174 od.odd_vid = infop.ovdi_id; in overlay_mux_recv()
176 odd = avl_find(&mux->omux_devices, &od, NULL); in overlay_mux_recv()
/illumos-gate/usr/src/pkg/manifests/
H A Ddeveloper-linker.p5m29 value="utilities for software development, including ld, ldd, od, and truss"
53 file path=usr/bin/od mode=0555
116 file path=usr/share/man/man1/od.1
127 desc="utilities for software development, including ld, ldd, od, and truss" \
H A Dsystem-xopen-xcu4.p5m82 link path=usr/xpg4/bin/od target=../../bin/od
/illumos-gate/usr/src/tools/smatch/src/validation/linear/
H A Dlogical.c12 int od(int i, struct S *b) { return i || b->d; } in od() function
/illumos-gate/usr/src/cmd/mdb/common/modules/smbsrv/
H A Dsmbsrv.c1751 mdb_smb_odir_t *od; in smbodir_dcmd() local
1753 od = mdb_zalloc(sizeof (*od), UM_SLEEP | UM_GC); in smbodir_dcmd()
1754 if (mdb_ctf_vread(od, SMBSRV_SCOPE "smb_odir_t", in smbodir_dcmd()
1763 "smb_odir_state_t", od->d_state, in smbodir_dcmd()
1770 mdb_printf("SID: %u\n", od->d_odid); in smbodir_dcmd()
1771 mdb_printf("User: %p\n", od->d_user); in smbodir_dcmd()
1772 mdb_printf("Tree: %p\n", od->d_tree); in smbodir_dcmd()
1773 mdb_printf("Reference Count: %d\n", od->d_refcnt); in smbodir_dcmd()
1774 mdb_printf("Pattern: %s\n", od->d_pattern); in smbodir_dcmd()
1775 mdb_printf("SMB Node: %p\n\n", od->d_dnode); in smbodir_dcmd()
[all …]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zpool_initialize/
H A Dzpool_initialize_verify_initialized.ksh85 od -t x4 -Ad | grep -qE "deadbeef +deadbeef +deadbeef +deadbeef" ||
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/tests/
H A Dlocale.sh337 if [[ $(whence od) ]]
339 …[[ $(print -r -- "$x" | od -An -tx1 | xargs echo) == "$got" ]] || err_exit "incorrect string from …
/illumos-gate/usr/src/lib/libctf/common/
H A Dctf_diff.c1298 ctf_diff_obj_t *id, *od; in ctf_diff_obj_fill() local
1301 od = &cds->cds_oobj[j]; in ctf_diff_obj_fill()
1303 if (id->cdo_name == NULL || od->cdo_name == NULL) in ctf_diff_obj_fill()
1305 if (strcmp(id->cdo_name, od->cdo_name) != 0) in ctf_diff_obj_fill()
1308 if (ctf_diff_symid(cds, id->cdo_id, od->cdo_id)) { in ctf_diff_obj_fill()
1313 od->cdo_matchidx = i; in ctf_diff_obj_fill()
/illumos-gate/exception_lists/
H A Dclosed-bins142 ./usr/bin/od
159 ./usr/xpg4/bin/od
/illumos-gate/usr/src/test/zfs-tests/include/
H A Dcommands.cfg80 od
/illumos-gate/usr/src/cmd/vgrind/
H A Dvgrindefs.src32 max min mod new NIL nil noresult not notin od of or procedure public\
164 :cb=\(*:ce=*\):kw=cand cor do od if fi else enum record prod union\

12