PageRenderTime 55ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/android/generated/android/content/ContentProviderNative.cs

https://bitbucket.org/festevezga/xobotos
C# | 183 lines | 150 code | 33 blank | 0 comment | 0 complexity | 56030f80ec12add1f5b87ea1e35b4dd5 MD5 | raw file
  1. using Sharpen;
  2. namespace android.content
  3. {
  4. [Sharpen.Stub]
  5. public abstract class ContentProviderNative : android.os.Binder, android.content.IContentProvider
  6. {
  7. internal const string TAG = "ContentProvider";
  8. [Sharpen.Stub]
  9. public ContentProviderNative()
  10. {
  11. throw new System.NotImplementedException();
  12. }
  13. [Sharpen.Stub]
  14. public static android.content.IContentProvider asInterface(android.os.IBinder obj
  15. )
  16. {
  17. throw new System.NotImplementedException();
  18. }
  19. [Sharpen.Stub]
  20. public abstract string getProviderName();
  21. [Sharpen.Stub]
  22. [Sharpen.OverridesMethod(@"android.os.Binder")]
  23. protected internal override bool onTransact(int code, android.os.Parcel data, android.os.Parcel
  24. reply, int flags)
  25. {
  26. throw new System.NotImplementedException();
  27. }
  28. [Sharpen.Stub]
  29. [Sharpen.ImplementsInterface(@"android.os.IInterface")]
  30. public virtual android.os.IBinder asBinder()
  31. {
  32. throw new System.NotImplementedException();
  33. }
  34. public abstract android.content.ContentProviderResult[] applyBatch(java.util.ArrayList
  35. <android.content.ContentProviderOperation> arg1);
  36. public abstract int bulkInsert(System.Uri arg1, android.content.ContentValues[] arg2
  37. );
  38. public abstract android.os.Bundle call(string arg1, string arg2, android.os.Bundle
  39. arg3);
  40. public abstract int delete(System.Uri arg1, string arg2, string[] arg3);
  41. public abstract string[] getStreamTypes(System.Uri arg1, string arg2);
  42. public abstract string getType(System.Uri arg1);
  43. public abstract System.Uri insert(System.Uri arg1, android.content.ContentValues
  44. arg2);
  45. public abstract android.content.res.AssetFileDescriptor openAssetFile(System.Uri
  46. arg1, string arg2);
  47. public abstract android.os.ParcelFileDescriptor openFile(System.Uri arg1, string
  48. arg2);
  49. public abstract android.content.res.AssetFileDescriptor openTypedAssetFile(System.Uri
  50. arg1, string arg2, android.os.Bundle arg3);
  51. public abstract android.database.Cursor query(System.Uri arg1, string[] arg2, string
  52. arg3, string[] arg4, string arg5);
  53. public abstract int update(System.Uri arg1, android.content.ContentValues arg2, string
  54. arg3, string[] arg4);
  55. }
  56. [Sharpen.Stub]
  57. internal sealed class ContentProviderProxy : android.content.IContentProvider
  58. {
  59. [Sharpen.Stub]
  60. public ContentProviderProxy(android.os.IBinder remote)
  61. {
  62. throw new System.NotImplementedException();
  63. }
  64. [Sharpen.Stub]
  65. [Sharpen.ImplementsInterface(@"android.os.IInterface")]
  66. public android.os.IBinder asBinder()
  67. {
  68. throw new System.NotImplementedException();
  69. }
  70. [Sharpen.Stub]
  71. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  72. public android.database.Cursor query(System.Uri url, string[] projection, string
  73. selection, string[] selectionArgs, string sortOrder)
  74. {
  75. throw new System.NotImplementedException();
  76. }
  77. [Sharpen.Stub]
  78. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  79. public string getType(System.Uri url)
  80. {
  81. throw new System.NotImplementedException();
  82. }
  83. [Sharpen.Stub]
  84. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  85. public System.Uri insert(System.Uri url, android.content.ContentValues values)
  86. {
  87. throw new System.NotImplementedException();
  88. }
  89. [Sharpen.Stub]
  90. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  91. public int bulkInsert(System.Uri url, android.content.ContentValues[] values)
  92. {
  93. throw new System.NotImplementedException();
  94. }
  95. [Sharpen.Stub]
  96. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  97. public android.content.ContentProviderResult[] applyBatch(java.util.ArrayList<android.content.ContentProviderOperation
  98. > operations)
  99. {
  100. throw new System.NotImplementedException();
  101. }
  102. [Sharpen.Stub]
  103. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  104. public int delete(System.Uri url, string selection, string[] selectionArgs)
  105. {
  106. throw new System.NotImplementedException();
  107. }
  108. [Sharpen.Stub]
  109. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  110. public int update(System.Uri url, android.content.ContentValues values, string selection
  111. , string[] selectionArgs)
  112. {
  113. throw new System.NotImplementedException();
  114. }
  115. [Sharpen.Stub]
  116. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  117. public android.os.ParcelFileDescriptor openFile(System.Uri url, string mode)
  118. {
  119. throw new System.NotImplementedException();
  120. }
  121. [Sharpen.Stub]
  122. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  123. public android.content.res.AssetFileDescriptor openAssetFile(System.Uri url, string
  124. mode)
  125. {
  126. throw new System.NotImplementedException();
  127. }
  128. [Sharpen.Stub]
  129. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  130. public android.os.Bundle call(string method, string request, android.os.Bundle args
  131. )
  132. {
  133. throw new System.NotImplementedException();
  134. }
  135. [Sharpen.Stub]
  136. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  137. public string[] getStreamTypes(System.Uri url, string mimeTypeFilter)
  138. {
  139. throw new System.NotImplementedException();
  140. }
  141. [Sharpen.Stub]
  142. [Sharpen.ImplementsInterface(@"android.content.IContentProvider")]
  143. public android.content.res.AssetFileDescriptor openTypedAssetFile(System.Uri url,
  144. string mimeType, android.os.Bundle opts)
  145. {
  146. throw new System.NotImplementedException();
  147. }
  148. private android.os.IBinder mRemote;
  149. }
  150. }