DBA Data[Home] [Help]

SYS.DBMS_DBFS_HS dependencies on DBMS_DBFS_CONTENT_PROPERTIES_T

Line 225: properties in out nocopy dbms_dbfs_content_properties_t,

221:
222: procedure createFile(
223: store_name in varchar2,
224: path in varchar2,
225: properties in out nocopy dbms_dbfs_content_properties_t,
226: content in out nocopy blob,
227: prop_flags in integer,
228: ctx in dbms_dbfs_content_context_t);
229:

Line 234: properties in out nocopy dbms_dbfs_content_properties_t,

230: procedure createLink(
231: store_name in varchar2,
232: srcPath in varchar2,
233: dstPath in varchar2,
234: properties in out nocopy dbms_dbfs_content_properties_t,
235: prop_flags in integer,
236: ctx in dbms_dbfs_content_context_t);
237:
238: procedure createReference(

Line 242: properties in out nocopy dbms_dbfs_content_properties_t,

238: procedure createReference(
239: store_name in varchar2,
240: srcPath in varchar2,
241: dstPath in varchar2,
242: properties in out nocopy dbms_dbfs_content_properties_t,
243: prop_flags in integer,
244: ctx in dbms_dbfs_content_context_t);
245:
246: procedure createDirectory(

Line 249: properties in out nocopy dbms_dbfs_content_properties_t,

245:
246: procedure createDirectory(
247: store_name in varchar2,
248: path in varchar2,
249: properties in out nocopy dbms_dbfs_content_properties_t,
250: prop_flags in integer,
251: recurse in integer,
252: ctx in dbms_dbfs_content_context_t);
253:

Line 305: properties in out nocopy dbms_dbfs_content_properties_t,

301:
302: procedure getPath(
303: store_name in varchar2,
304: path in varchar2,
305: properties in out nocopy dbms_dbfs_content_properties_t,
306: content out blob,
307: item_type out integer,
308: prop_flags in integer,
309: forUpdate in integer,

Line 316: properties in out nocopy dbms_dbfs_content_properties_t,

312:
313: procedure getPathNowait(
314: store_name in varchar2,
315: path in varchar2,
316: properties in out nocopy dbms_dbfs_content_properties_t,
317: content out nocopy blob,
318: item_type out integer,
319: prop_flags in integer,
320: deref in integer,

Line 326: properties in out nocopy dbms_dbfs_content_properties_t,

322:
323: procedure getPath(
324: store_name in varchar2,
325: path in varchar2,
326: properties in out nocopy dbms_dbfs_content_properties_t,
327: amount in out number,
328: offset in number,
329: buffer out raw,
330: prop_flags in integer,

Line 336: properties in out nocopy dbms_dbfs_content_properties_t,

332:
333: procedure getPath(
334: store_name in varchar2,
335: path in varchar2,
336: properties in out nocopy dbms_dbfs_content_properties_t,
337: amount in out number,
338: offset in number,
339: buffers out dbms_dbfs_content_raw_t,
340: prop_flags in integer,

Line 346: properties in out nocopy dbms_dbfs_content_properties_t,

342:
343: procedure putPath(
344: store_name in varchar2,
345: path in varchar2,
346: properties in out nocopy dbms_dbfs_content_properties_t,
347: content in out nocopy blob,
348: item_type out integer,
349: prop_flags in integer,
350: ctx in dbms_dbfs_content_context_t);

Line 355: properties in out nocopy dbms_dbfs_content_properties_t,

351:
352: procedure putPath(
353: store_name in varchar2,
354: path in varchar2,
355: properties in out nocopy dbms_dbfs_content_properties_t,
356: amount in number,
357: offset in number,
358: buffer in raw,
359: prop_flags in integer,

Line 365: properties in out nocopy dbms_dbfs_content_properties_t,

361:
362: procedure putPath(
363: store_name in varchar2,
364: path in varchar2,
365: properties in out nocopy dbms_dbfs_content_properties_t,
366: written out number,
367: offset in number,
368: buffers in dbms_dbfs_content_raw_t,
369: prop_flags in integer,

Line 377: properties in out nocopy dbms_dbfs_content_properties_t,

373: procedure renamePath(
374: store_name in varchar2,
375: oldPath in varchar2,
376: newPath in varchar2,
377: properties in out nocopy dbms_dbfs_content_properties_t,
378: ctx in dbms_dbfs_content_context_t);
379:
380: procedure setPath(
381: store_name in varchar2,

Line 384: properties in out nocopy dbms_dbfs_content_properties_t,

380: procedure setPath(
381: store_name in varchar2,
382: contentID in raw,
383: path in varchar2,
384: properties in out nocopy dbms_dbfs_content_properties_t,
385: ctx in dbms_dbfs_content_context_t);
386:
387: function list(
388: store_name in varchar2,