Lines Matching refs:ctx

77         DirContext ctx = (DirContext)res.getResolvedObj();
79 return ctx.getAttributes(res.getRemainingName());
81 ctx.close();
89 DirContext ctx = getContinuationDirContext(name);
91 return ctx.getAttributes(name.getSuffix(1));
93 ctx.close();
101 DirContext ctx = (DirContext)res.getResolvedObj();
103 return ctx.getAttributes(res.getRemainingName(), attrIds);
105 ctx.close();
114 DirContext ctx = getContinuationDirContext(name);
116 return ctx.getAttributes(name.getSuffix(1), attrIds);
118 ctx.close();
126 DirContext ctx = (DirContext)res.getResolvedObj();
128 ctx.modifyAttributes(res.getRemainingName(), mod_op, attrs);
130 ctx.close();
139 DirContext ctx = getContinuationDirContext(name);
141 ctx.modifyAttributes(name.getSuffix(1), mod_op, attrs);
143 ctx.close();
151 DirContext ctx = (DirContext)res.getResolvedObj();
153 ctx.modifyAttributes(res.getRemainingName(), mods);
155 ctx.close();
164 DirContext ctx = getContinuationDirContext(name);
166 ctx.modifyAttributes(name.getSuffix(1), mods);
168 ctx.close();
176 DirContext ctx = (DirContext)res.getResolvedObj();
178 ctx.bind(res.getRemainingName(), obj, attrs);
180 ctx.close();
189 DirContext ctx = getContinuationDirContext(name);
191 ctx.bind(name.getSuffix(1), obj, attrs);
193 ctx.close();
201 DirContext ctx = (DirContext)res.getResolvedObj();
203 ctx.rebind(res.getRemainingName(), obj, attrs);
205 ctx.close();
214 DirContext ctx = getContinuationDirContext(name);
216 ctx.rebind(name.getSuffix(1), obj, attrs);
218 ctx.close();
226 DirContext ctx = (DirContext)res.getResolvedObj();
228 return ctx.createSubcontext(res.getRemainingName(), attrs);
230 ctx.close();
239 DirContext ctx = getContinuationDirContext(name);
241 return ctx.createSubcontext(name.getSuffix(1), attrs);
243 ctx.close();
250 DirContext ctx = (DirContext)res.getResolvedObj();
251 return ctx.getSchema(res.getRemainingName());
258 DirContext ctx = getContinuationDirContext(name);
260 return ctx.getSchema(name.getSuffix(1));
262 ctx.close();
270 DirContext ctx = (DirContext)res.getResolvedObj();
272 return ctx.getSchemaClassDefinition(res.getRemainingName());
274 ctx.close();
283 DirContext ctx = getContinuationDirContext(name);
285 return ctx.getSchemaClassDefinition(name.getSuffix(1));
287 ctx.close();
296 DirContext ctx = (DirContext)res.getResolvedObj();
298 return ctx.search(res.getRemainingName(), matchingAttributes);
300 ctx.close();
310 DirContext ctx = getContinuationDirContext(name);
312 return ctx.search(name.getSuffix(1), matchingAttributes);
314 ctx.close();
324 DirContext ctx = (DirContext)res.getResolvedObj();
326 return ctx.search(res.getRemainingName(),
329 ctx.close();
341 DirContext ctx = getContinuationDirContext(name);
343 return ctx.search(name.getSuffix(1),
346 ctx.close();
356 DirContext ctx = (DirContext)res.getResolvedObj();
358 return ctx.search(res.getRemainingName(), filter, cons);
360 ctx.close();
371 DirContext ctx = getContinuationDirContext(name);
373 return ctx.search(name.getSuffix(1), filter, cons);
375 ctx.close();
386 DirContext ctx = (DirContext)res.getResolvedObj();
389 ctx.search(res.getRemainingName(), filterExpr, filterArgs, cons);
391 ctx.close();
403 DirContext ctx = getContinuationDirContext(name);
405 return ctx.search(name.getSuffix(1), filterExpr, filterArgs, cons);
407 ctx.close();