Lines Matching defs:fid
74 * Allocate and associate a service context with a fid.
77 ndr_pipe_open(int fid, uint8_t *data, uint32_t datalen)
83 if ((np = ndr_pipe_lookup(fid)) != NULL) {
89 if ((np = ndr_pipe_allocate(fid)) == NULL) {
108 * Release the context associated with a fid when an opipe is closed.
111 ndr_pipe_close(int fid)
117 if ((np = ndr_pipe_lookup(fid)) == NULL) {
124 * and again to close the fid.
137 ndr_pipe_write(int fid, uint8_t *buf, uint32_t len)
148 if ((np = ndr_pipe_lookup(fid)) == NULL) {
169 ndr_pipe_read(int fid, uint8_t *buf, uint32_t *len, uint32_t *resid)
180 if ((np = ndr_pipe_lookup(fid)) == NULL) {
212 uint32_t fid;
218 fid = *tmp;
221 if ((np = ndr_pipe_lookup(fid)) == NULL) {
223 (void) smb_kmod_event_notify(fid);
235 (void) smb_kmod_event_notify(fid);
263 mxa->fid = np->np_fid;
309 ndr_pipe_lookup(int fid)
317 if (np->np_fid == fid) {
343 ndr_pipe_allocate(int fid)
358 np->np_fid = fid;
417 * (associated with this fid) left around.