HomeSort by relevance Sort by last modified time
    Searched refs:profile (Results 1 - 25 of 193) sorted by null

1 2 3 4 5 6 7 8

  /external/e2fsprogs/e2fsck/
profile_helpers.h 2 * profile_helpers.h -- Function prototypes for profile helper functions
13 (profile_t profile, const char *const *names, char ***ret_values);
19 (profile_t profile, const char **names, char ***ret_names);
22 (profile_t profile, const char **names, char ***ret_names);
profile.h 2 * profile.h
48 * Used by the profile iterator in prof_get.c
62 (profile_t profile);
65 (profile_t profile, const char *def_string);
68 (profile_t profile, const char *name, const char *subname,
72 (profile_t profile, const char *name, const char *subname,
77 (profile_t profile, const char *name, const char *subname,
82 (profile_t profile, const char *name, const char *subname,
87 (profile_t profile, const char *const *names,
profile.c 2 * profile.c -- A simple configuration file parsing "library in a file"
4 * The profile library was originally written by Theodore Ts'o in 1995
72 #include "profile.h"
85 * This is the structure which stores the profile information for a
104 * The profile flags
121 * Used by the profile iterator in prof_get.c
151 /* profile parser declarations */
209 (prf_file_t profile);
211 static errcode_t profile_get_value(profile_t profile, const char *name,
302 profile_t profile; local
1267 profile_t profile; member in struct:profile_iterator
1830 profile_t profile; local
    [all...]
  /external/webkit/WebCore/html/
HTMLHeadElement.idl 23 attribute [ConvertNullToNullString] DOMString profile;
HTMLHeadElement.h 41 String profile() const;
  /frameworks/base/vpn/java/android/net/vpn/
IVpnService.aidl 28 * @param profile the profile object
32 boolean connect(in VpnProfile profile, String username, String password);
42 void checkStatus(in VpnProfile profile);
  /external/webkit/WebCore/inspector/
JavaScriptProfile.cpp 32 #include <profiler/Profile.h>
47 typedef HashMap<Profile*, JSObject*> ProfileMap;
64 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(thisObject));
65 return JSValueMakeString(ctx, OpaqueJSString::create(profile->title()).get());
74 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(thisObject)); local
75 return toRef(exec, toJS(exec, profile->head()))
136 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(object)); local
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
hw_irq_32.h 15 #include <linux/profile.h>
  /ndk/build/platforms/android-5/arch-x86/usr/include/asm/
hw_irq_32.h 15 #include <linux/profile.h>
  /ndk/build/platforms/android-8/arch-x86/usr/include/asm/
hw_irq_32.h 15 #include <linux/profile.h>
  /packages/apps/Settings/src/com/android/settings/bluetooth/
ConnectSpecificProfilesActivity.java 30 import com.android.settings.bluetooth.LocalBluetoothProfileManager.Profile;
55 * or offline mode). In online mode, user interactions with the profile
56 * checkboxes will also toggle the profile's connectivity. In offline mode,
58 * profile.
97 // Add a preference for each profile
127 for (Profile profile : mCachedDevice.getConnectableProfiles()) {
128 Preference pref = createProfilePreference(profile);
134 * Creates a checkbox preference for the particular profile. The key will be
135 * the profile's name
169 Profile profile = getProfileOf(preference); local
    [all...]
CachedBluetoothDevice.java 36 import com.android.settings.bluetooth.LocalBluetoothProfileManager.Profile;
68 private List<Profile> mProfiles = new ArrayList<Profile>();
83 * Last time a bt profile auto-connect was attempted.
104 final Profile profile; // HEADSET, A2DP, etc field in class:CachedBluetoothDevice.BluetoothJob
109 CachedBluetoothDevice cachedDevice, Profile profile) {
112 this.profile = profile;
    [all...]
  /external/webkit/WebCore/inspector/front-end/
ProfilesPanel.js 34 WebInspector.ProfileType.URLRegExp = /webkit-profile:\/\/(.+)\/(.+)#([0-9]+)/;
66 viewForProfile: function(profile)
68 if (!profile._profileView)
69 profile._profileView = this.createView(profile);
70 return profile._profileView;
79 createView: function(profile)
85 createSidebarTreeElementForProfile: function(profile)
110 this.profileViews.id = "profile-views";
117 this.profileViewStatusBarItemsContainer.id = "profile-view-status-bar-items"
    [all...]
  /external/opencore/codecs_v2/utilities/pv_config_parser/include/
pv_video_config_parser.h 36 uint32 profile; member in struct:__anon3539
  /hardware/ti/omap3/omx/ti_omx_config_parser/inc/
ti_video_config_parser.h 40 uint32 profile; member in struct:_tiVideoConfigParserOutputs
ti_omx_config_parser.h 51 OMX_U32 profile; member in struct:__anon8070
  /packages/apps/Settings/src/com/android/settings/vpn/
PptpEditor.java 41 PptpProfile profile = (PptpProfile) getProfile(); local
45 final PptpProfile profile = (PptpProfile) getProfile(); local
47 boolean enabled = profile.isEncryptionEnabled();
56 profile.setEncryptionEnabled(enabled);
  /external/icu4c/common/
usprep.cpp 53 /* Profile names must be aligned to UStringPrepProfileType */
134 UStringPrepProfile *profile = NULL; local
153 profile = (UStringPrepProfile *) e->value.pointer;
156 if ((noRefCount== FALSE && profile->refCount == 0) ||
162 usprep_unload(profile);
172 uprv_free(profile);
233 loadData(UStringPrepProfile* profile,
270 if(profile->sprepData==NULL) {
271 profile->sprepData=dataMemory;
273 uprv_memcpy(&profile->indexes, p, sizeof(profile->indexes))
317 UStringPrepProfile* profile = NULL; local
    [all...]
  /external/v8/test/mjsunit/tools/
profile.js 29 // Files: tools/splaytree.js tools/codemap.js tools/consarray.js tools/profile.js
53 function countNodes(profile, traverseFunc) {
55 traverseFunc.call(profile, function () { count++; });
61 this.profile = new devtools.profiler.Profile();
75 this.profile.addLibrary('lib1', 0x11000, 0x12000);
76 this.profile.addStaticCode('lib1-f1', 0x11100, 0x11900);
77 this.profile.addStaticCode('lib1-f2', 0x11200, 0x11500);
78 this.profile.addLibrary('lib2', 0x21000, 0x22000);
79 this.profile.addStaticCode('lib2-f1', 0x21100, 0x21900)
314 var profile = testDriver.profile.getTopDownProfile('lib2-f1'); variable
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/color/
ICC_ProfileHelper.java 26 * Includes utility methods for reading ICC profile data.
72 * Used in ICC_Transform class to check the rendering intent of the profile
73 * @param profile - ICC profile
76 public static int getRenderingIntent(ICC_Profile profile) {
78 profile.getData(ICC_Profile.icSigHead), // pf header
  /external/opencore/codecs_v2/audio/aac/dec/src/
s_progconfig.h 77 Int profile; member in struct:__anon3451
  /frameworks/base/media/libstagefright/codecs/aacdec/
s_progconfig.h 77 Int profile; member in struct:__anon7353
  /external/webkit/WebKit/chromium/src/js/
ProfilerAgent.js 99 // A temporary icon indicating that the profile is being processed.
101 "profile-sidebar-tree-item",
116 function onProfileProcessingFinished(profile) {
118 profile.typeId = WebInspector.CPUProfileType.TypeId;
119 InspectorBackend.addFullProfile(profile);
120 WebInspector.addProfileHeader(profile);
121 // If no profile is currently shown, show the new one.
124 profilesPanel.showProfile(profile);
165 var cmd = new devtools.DebugCommand("profile", {
182 var cmd = new devtools.DebugCommand("profile", {
    [all...]
  /frameworks/base/media/java/android/media/
MediaRecorder.java 266 * @param profile the CamcorderProfile to use
269 public void setProfile(CamcorderProfile profile) {
270 setOutputFormat(profile.fileFormat);
271 setVideoFrameRate(profile.videoFrameRate);
272 setVideoSize(profile.videoFrameWidth, profile.videoFrameHeight);
273 setVideoEncodingBitRate(profile.videoBitRate);
274 setAudioEncodingBitRate(profile.audioBitRate);
275 setAudioChannels(profile.audioChannels);
276 setAudioSamplingRate(profile.audioSampleRate)
    [all...]
  /external/opencore/codecs_v2/omx/omx_common/include/
pv_omx_config_parser.h 82 OMX_U32 profile; member in struct:__anon3525

Completed in 727 milliseconds

1 2 3 4 5 6 7 8