Searched refs:permissions (Results 1 - 25 of 146) sorted by relevance

123456

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DSFTPv3FileAttributes.java33 * The POSIX permissions. <code>NULL</code> if not present.
51 * S_IRWXU 00700 mask for file owner permissions
55 * S_IRWXG 00070 mask for group permissions
59 * S_IRWXO 00007 mask for permissions for others (not in group)
65 public Integer permissions = null; field in class:SFTPv3FileAttributes
82 * @return Returns true if permissions are available and they indicate
87 if (permissions == null)
90 return ((permissions.intValue() & 0040000) == 0040000);
96 * @return Returns true if permissions are available and they indicate
101 if (permissions
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_install_dialog.h23 const std::vector<string16>& permissions,
H A Dconvert_web_app.cc121 // Add the permissions.
122 ListValue* permissions = new ListValue(); local
123 root->Set(keys::kPermissions, permissions);
124 for (size_t i = 0; i < web_app.permissions.size(); ++i) {
125 permissions->Append(Value::CreateStringValue(web_app.permissions[i]));
/external/webkit/Source/WebCore/storage/
H A DSQLStatementSync.h49 SQLStatementSync(const String& statement, const Vector<SQLValue>& arguments, int permissions);
H A DSQLStatement.h50 static PassRefPtr<SQLStatement> create(Database*, const String&, const Vector<SQLValue>&, PassRefPtr<SQLStatementCallback>, PassRefPtr<SQLStatementErrorCallback>, int permissions);
65 SQLStatement(Database*, const String& statement, const Vector<SQLValue>& arguments, PassRefPtr<SQLStatementCallback>, PassRefPtr<SQLStatementErrorCallback>, int permissions);
H A DSQLStatement.cpp46 PassRefPtr<SQLStatement> SQLStatement::create(Database* database, const String& statement, const Vector<SQLValue>& arguments, PassRefPtr<SQLStatementCallback> callback, PassRefPtr<SQLStatementErrorCallback> errorCallback, int permissions) argument
48 return adoptRef(new SQLStatement(database, statement, arguments, callback, errorCallback, permissions));
51 SQLStatement::SQLStatement(Database* database, const String& statement, const Vector<SQLValue>& arguments, PassRefPtr<SQLStatementCallback> callback, PassRefPtr<SQLStatementErrorCallback> errorCallback, int permissions) argument
56 , m_permissions(permissions)
H A DSQLTransactionSync.cpp90 int permissions = DatabaseAuthorizer::ReadWriteMask; local
92 permissions |= DatabaseAuthorizer::NoAccessMask;
94 permissions |= DatabaseAuthorizer::ReadOnlyMask;
96 SQLStatementSync statement(sqlStatement, arguments, permissions);
H A DSQLStatementSync.cpp46 SQLStatementSync::SQLStatementSync(const String& statement, const Vector<SQLValue>& arguments, int permissions) argument
49 , m_permissions(permissions)
/external/libsepol/src/
H A Dutil.c90 for (i = 0; i < cladatum->permissions.nprim; i++) {
93 rc = hashtab_map(cladatum->permissions.table,
97 permissions.table, perm_name,
/external/chromium/chrome/browser/ui/gtk/extensions/
H A Dextension_install_dialog_gtk.cc26 // Padding on all sides of each permission in the permissions list.
57 const std::vector<string16>& permissions,
106 bool show_permissions = !permissions.empty();
107 // If we are not going to show the permissions, vertically center the title.
150 for (std::vector<string16>::const_iterator iter = permissions.begin();
151 iter != permissions.end(); ++iter) {
152 if (iter != permissions.begin())
157 iter == permissions.begin() ? padding_above_tag : NULL,
177 const std::vector<string16>& permissions,
193 browser_window->window(), icon, extension, delegate, permissions, typ
53 ShowInstallDialog(GtkWindow* parent, SkBitmap* skia_icon, const Extension* extension, ExtensionInstallUI::Delegate *delegate, const std::vector<string16>& permissions, ExtensionInstallUI::PromptType type) argument
172 ShowExtensionInstallDialog( Profile* profile, ExtensionInstallUI::Delegate* delegate, const Extension* extension, SkBitmap* icon, const std::vector<string16>& permissions, ExtensionInstallUI::PromptType type) argument
[all...]
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DGeolocationClientImpl.cpp150 permissions()->queryPermissionState(geolocation->frame());
155 permissions()->cancelPermissionStateQuery(geolocation->frame());
198 permissions()->resetTemporaryPermissionStates();
203 permissions()->providePermissionState(origin, allow, remember);
206 GeolocationPermissions* GeolocationClientImpl::permissions() const function in class:android::GeolocationClientImpl
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/
H A DSubjectDomainCombinerTest.java14 * See the License for the specific language governing permissions and
92 PermissionCollection permissions = new Permissions();
102 ProtectionDomain domain = new ProtectionDomain(source, permissions,
108 assertSame("PermissionCollection", permissions, pd[0]
/external/chromium/chrome/common/
H A Dweb_apps_unittest.cc115 EXPECT_EQ(0u, web_app->permissions.size());
133 ASSERT_EQ(2u, web_app->permissions.size());
134 EXPECT_EQ("geolocation", web_app->permissions[0]);
135 EXPECT_EQ("notifications", web_app->permissions[1]);
H A Dweb_apps.h59 // The permissions the app requests. Only supported with manifest-based apps.
60 std::vector<std::string> permissions; member in struct:WebApplicationInfo
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/templates/packager/
H A Dpackaging.properties16 root.permissions.755=eclipse,*.so*
17 root.macosx.carbon.ppc.permissions.755=Eclipse.app/Contents/MacOS/eclipse
/external/libsepol/include/sepol/policydb/
H A Dconstraint.h8 * order for one or more permissions to be granted.
65 sepol_access_vector_t permissions; /* constrained permissions */ member in struct:constraint_node
66 constraint_expr_t *expr; /* constraint on permissions */
/external/chromium/chrome/browser/ui/views/extensions/
H A Dextension_install_dialog_view.cc31 // requests permissions.
35 // permissions.
70 const std::vector<string16>& permissions,
104 // The white box containing the list of permissions the extension requires.
105 // This can be NULL if the extension requires no permissions.
108 // The labels describing each of the permissions the extension requires.
113 // whether the extension requires any permissions.
127 const std::vector<string16>& permissions,
156 if (permissions.empty()) {
175 for (size_t i = 0; i < permissions
123 ExtensionInstallDialogView( ExtensionInstallUI::Delegate* delegate, const Extension* extension, SkBitmap* icon, const std::vector<string16>& permissions, ExtensionInstallUI::PromptType type) argument
314 ShowExtensionInstallDialog( Profile* profile, ExtensionInstallUI::Delegate* delegate, const Extension* extension, SkBitmap* icon, const std::vector<string16>& permissions, ExtensionInstallUI::PromptType type) argument
[all...]
/external/eyes-free/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/external/icu4c/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/external/jmdns/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/external/jsilver/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/external/llvm/lib/Support/
H A DFileOutputBuffer.cpp101 sys::fs::perms new_perms = Stat2.permissions();
109 EC = sys::fs::permissions(Twine(TempFilePath), new_perms);
/external/safe-iop/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/external/webkit/Tools/android/webkitmerge/
H A DAndroid.mk12 # See the License for the specific language governing permissions and
/external/webrtc/src/modules/audio_processing/test/android/apmtest/jni/
H A DAndroid.mk12 # See the License for the specific language governing permissions and

Completed in 507 milliseconds

123456