DBA Data[Home] [Help]

SYS.DBMS_DBFS_CONTENT_SPI dependencies on DBMS_DBFS_CONTENT_PROPERTIES_T

Line 136: store_names in dbms_dbfs_content_properties_t,

132: nref out integer,
133: useEstimate in integer);
134:
135: procedure spaceUsageFull(
136: store_names in dbms_dbfs_content_properties_t,
137: blksize out integer,
138: tbytes out integer,
139: fbytes out integer,
140: nfile out integer,

Line 146: store_names in dbms_dbfs_content_properties_t,

142: nlink out integer,
143: nref out integer);
144:
145: procedure spaceUsageFull(
146: store_names in dbms_dbfs_content_properties_t,
147: blksize out integer,
148: tbytes out integer,
149: fbytes out integer,
150: nfile out integer,

Line 262: properties in out nocopy dbms_dbfs_content_properties_t,

258:
259: procedure createFile(
260: store_name in varchar2,
261: path in varchar2,
262: properties in out nocopy dbms_dbfs_content_properties_t,
263: content in out nocopy blob,
264: prop_flags in integer,
265: ctx in dbms_dbfs_content_context_t);
266:

Line 271: properties in out nocopy dbms_dbfs_content_properties_t,

267: procedure createLink(
268: store_name in varchar2,
269: srcPath in varchar2,
270: dstPath in varchar2,
271: properties in out nocopy dbms_dbfs_content_properties_t,
272: prop_flags in integer,
273: ctx in dbms_dbfs_content_context_t);
274:
275: procedure createReference(

Line 279: properties in out nocopy dbms_dbfs_content_properties_t,

275: procedure createReference(
276: store_name in varchar2,
277: srcPath in varchar2,
278: dstPath in varchar2,
279: properties in out nocopy dbms_dbfs_content_properties_t,
280: prop_flags in integer,
281: ctx in dbms_dbfs_content_context_t);
282:
283: procedure createDirectory(

Line 286: properties in out nocopy dbms_dbfs_content_properties_t,

282:
283: procedure createDirectory(
284: store_name in varchar2,
285: path in varchar2,
286: properties in out nocopy dbms_dbfs_content_properties_t,
287: prop_flags in integer,
288: recurse in integer,
289: ctx in dbms_dbfs_content_context_t);
290:

Line 423: properties in out nocopy dbms_dbfs_content_properties_t,

419:
420: procedure getPath(
421: store_name in varchar2,
422: path in varchar2,
423: properties in out nocopy dbms_dbfs_content_properties_t,
424: content out nocopy blob,
425: item_type out integer,
426: prop_flags in integer,
427: forUpdate in integer,

Line 434: properties in out nocopy dbms_dbfs_content_properties_t,

430:
431: procedure getPathNowait(
432: store_name in varchar2,
433: path in varchar2,
434: properties in out nocopy dbms_dbfs_content_properties_t,
435: content out nocopy blob,
436: item_type out integer,
437: prop_flags in integer,
438: deref in integer,

Line 444: properties in out nocopy dbms_dbfs_content_properties_t,

440:
441: procedure getPath(
442: store_name in varchar2,
443: path in varchar2,
444: properties in out nocopy dbms_dbfs_content_properties_t,
445: amount in out number,
446: offset in number,
447: buffer out nocopy raw,
448: prop_flags in integer,

Line 454: properties in out nocopy dbms_dbfs_content_properties_t,

450:
451: procedure getPath(
452: store_name in varchar2,
453: path in varchar2,
454: properties in out nocopy dbms_dbfs_content_properties_t,
455: amount in out number,
456: offset in number,
457: buffers out nocopy dbms_dbfs_content_raw_t,
458: prop_flags in integer,

Line 464: properties in out nocopy dbms_dbfs_content_properties_t,

460:
461: procedure putPath(
462: store_name in varchar2,
463: path in varchar2,
464: properties in out nocopy dbms_dbfs_content_properties_t,
465: content in out nocopy blob,
466: item_type out integer,
467: prop_flags in integer,
468: ctx in dbms_dbfs_content_context_t);

Line 473: properties in out nocopy dbms_dbfs_content_properties_t,

469:
470: procedure putPath(
471: store_name in varchar2,
472: path in varchar2,
473: properties in out nocopy dbms_dbfs_content_properties_t,
474: amount in number,
475: offset in number,
476: buffer in raw,
477: prop_flags in integer,

Line 483: properties in out nocopy dbms_dbfs_content_properties_t,

479:
480: procedure putPath(
481: store_name in varchar2,
482: path in varchar2,
483: properties in out nocopy dbms_dbfs_content_properties_t,
484: written out number,
485: offset in number,
486: buffers in dbms_dbfs_content_raw_t,
487: prop_flags in integer,

Line 550: properties in out nocopy dbms_dbfs_content_properties_t,

546: procedure renamePath(
547: store_name in varchar2,
548: oldPath in varchar2,
549: newPath in varchar2,
550: properties in out nocopy dbms_dbfs_content_properties_t,
551: ctx in dbms_dbfs_content_context_t);
552:
553: procedure movePath(
554: store_name in varchar2,

Line 557: properties in out nocopy dbms_dbfs_content_properties_t,

553: procedure movePath(
554: store_name in varchar2,
555: oldPath in varchar2,
556: newPath in varchar2,
557: properties in out nocopy dbms_dbfs_content_properties_t,
558: ctx in dbms_dbfs_content_context_t);
559:
560: procedure setPath(
561: store_name in varchar2,

Line 564: properties in out nocopy dbms_dbfs_content_properties_t,

560: procedure setPath(
561: store_name in varchar2,
562: contentID in raw,
563: path in varchar2,
564: properties in out nocopy dbms_dbfs_content_properties_t,
565: ctx in dbms_dbfs_content_context_t);
566:
567:
568: