Home
last modified time | relevance | path

Searched refs:cmd (Results 1 – 25 of 69) sorted by relevance

123

/development/ndk/platforms/android-3/include/linux/
Dwireless.h91 #define IW_IOCTL_IDX(cmd) ((cmd) - SIOCIWFIRST) argument
93 #define IW_IS_SET(cmd) (!((cmd) & 0x1)) argument
94 #define IW_IS_GET(cmd) ((cmd) & 0x1) argument
108 #define IW_EVENT_IDX(cmd) ((cmd) - IWEVFIRST) argument
279 #define IW_EVENT_CAPA_BASE(cmd) ((cmd >= SIOCIWFIRSTPRIV) ? (cmd - SIOCIWFIRSTPRIV + 0x60) : (c… argument
280 #define IW_EVENT_CAPA_INDEX(cmd) (IW_EVENT_CAPA_BASE(cmd) >> 5) argument
281 #define IW_EVENT_CAPA_MASK(cmd) (1 << (IW_EVENT_CAPA_BASE(cmd) & 0x1F)) argument
286 #define IW_EVENT_CAPA_SET(event_capa, cmd) (event_capa[IW_EVENT_CAPA_INDEX(cmd)] |= IW_EVENT_CAPA_M… argument
371 __u16 cmd; member
384 __u32 cmd; member
[all …]
Dandroid_alarm.h47 #define ANDROID_ALARM_BASE_CMD(cmd) (cmd & ~(_IOC(0, 0, 0xf0, 0))) argument
48 #define ANDROID_ALARM_IOCTL_TO_TYPE(cmd) (_IOC_NR(cmd) >> 4) argument
Dcapi.h57 unsigned long cmd; member
74 capi_manufacturer_cmd cmd; member
Dquota.h39 #define QCMD(cmd, type) (((cmd) << SUBCMDSHIFT) | ((type) & SUBCMDMASK)) argument
/development/ndk/platforms/android-21/include/linux/
Dwireless.h95 #define IW_IOCTL_IDX(cmd) ((cmd) - SIOCIWFIRST) argument
97 #define IW_IS_SET(cmd) (!((cmd) & 0x1)) argument
99 #define IW_IS_GET(cmd) ((cmd) & 0x1) argument
114 #define IW_EVENT_IDX(cmd) ((cmd) - IWEVFIRST) argument
310 #define IW_EVENT_CAPA_BASE(cmd) ((cmd >= SIOCIWFIRSTPRIV) ? (cmd - SIOCIWFIRSTPRIV + 0x60) : (c… argument
311 #define IW_EVENT_CAPA_INDEX(cmd) (IW_EVENT_CAPA_BASE(cmd) >> 5) argument
312 #define IW_EVENT_CAPA_MASK(cmd) (1 << (IW_EVENT_CAPA_BASE(cmd) & 0x1F)) argument
316 #define IW_EVENT_CAPA_SET(event_capa, cmd) (event_capa[IW_EVENT_CAPA_INDEX(cmd)] |= IW_EVENT_CAPA_M… argument
406 __u16 cmd; member
419 __u32 cmd; member
[all …]
Dethtool.h25 __u32 cmd; member
54 __u32 cmd; member
72 __u32 cmd; member
80 __u32 cmd; member
85 __u32 cmd; member
92 __u32 cmd; member
101 __u32 cmd; member
115 __u32 cmd; member
122 __u32 cmd; member
154 __u32 cmd; member
[all …]
Dandroid_alarm.h55 #define ANDROID_ALARM_BASE_CMD(cmd) (cmd & ~(_IOC(0, 0, 0xf0, 0))) argument
56 #define ANDROID_ALARM_IOCTL_TO_TYPE(cmd) (_IOC_NR(cmd) >> 4) argument
Dipmi.h67 unsigned char cmd; member
75 unsigned char cmd; member
125 unsigned char cmd; member
132 unsigned int cmd; member
Dcapi.h61 unsigned long cmd; member
77 capi_manufacturer_cmd cmd; member
Dquota.h32 #define QCMD(cmd, type) (((cmd) << SUBCMDSHIFT) | ((type) & SUBCMDMASK)) argument
Dax25.h85 int cmd; member
94 unsigned int cmd; member
Dbaycom.h29 int cmd; member
/development/python-packages/adb/
Ddevice.py41 def __init__(self, cmd, stdout, stderr, exit_code): argument
43 '`{0}` exited with code {1}'.format(cmd, exit_code))
44 self.cmd = cmd
289 def _simple_call(self, cmd): argument
290 logging.info(' '.join(self.adb_cmd + cmd))
292 self.adb_cmd + cmd, stderr=subprocess.STDOUT)
294 def shell(self, cmd): argument
307 exit_code, stdout, stderr = self.shell_nocheck(cmd)
309 raise ShellError(cmd, stdout, stderr, exit_code)
312 def shell_nocheck(self, cmd): argument
[all …]
/development/testrunner/
Drun_command.py37 def RunCommand(cmd, timeout_time=None, retry_count=3, return_output=True, argument
54 result = RunOnce(cmd, timeout_time=timeout_time,
60 logger.Log("No response for %s, retrying" % cmd)
65 def RunOnce(cmd, timeout_time=None, return_output=True, stdin_input=None): argument
99 cmd,
111 logger.SilentLog("failed to retrieve stdout from: %s" % cmd)
116 logger.SilentLog("Error: %s returned %d error code" %(cmd,
137 logger.SilentLog("about to raise a timeout for: %s" % cmd)
/development/ndk/platforms/android-3/include/linux/mmc/
Dmmc.h46 #define mmc_resp_type(cmd) ((cmd)->flags & (MMC_RSP_PRESENT|MMC_RSP_136|MMC_RSP_CRC|MMC_RSP_BUSY|MM… argument
48 #define mmc_cmd_type(cmd) ((cmd)->flags & MMC_CMD_MASK) argument
88 struct mmc_command *cmd; member
/development/ndk/sources/android/native_app_glue/
Dandroid_native_app_glue.c50 int8_t cmd; in android_app_read_cmd() local
51 if (read(android_app->msgread, &cmd, sizeof(cmd)) == sizeof(cmd)) { in android_app_read_cmd()
52 switch (cmd) { in android_app_read_cmd()
57 return cmd; in android_app_read_cmd()
89 void android_app_pre_exec_cmd(struct android_app* android_app, int8_t cmd) { in android_app_pre_exec_cmd() argument
90 switch (cmd) { in android_app_pre_exec_cmd()
125 LOGV("activityState=%d\n", cmd); in android_app_pre_exec_cmd()
127 android_app->activityState = cmd; in android_app_pre_exec_cmd()
146 void android_app_post_exec_cmd(struct android_app* android_app, int8_t cmd) { in android_app_post_exec_cmd() argument
147 switch (cmd) { in android_app_post_exec_cmd()
[all …]
Dandroid_native_app_glue.h117 void (*onAppCmd)(struct android_app* app, int32_t cmd);
325 void android_app_pre_exec_cmd(struct android_app* android_app, int8_t cmd);
332 void android_app_post_exec_cmd(struct android_app* android_app, int8_t cmd);
/development/tools/idegen/
Dintellij-gen.sh75 cmd="java -cp $idegenjar com.android.idegen.IntellijProject $index_file $project_dir $module_dirs"
76 echo $cmd
77 $cmd
/development/testrunner/test_defs/
Dhost_test.py102 cmd = "java -cp %s %s %s -s %s -p %s" % (":".join(full_lib_paths),
106 logger.Log(cmd)
108 run_command.RunOnce(cmd, return_output=False)
/development/python-packages/gdbrunner/
D__init__.py82 def get_run_as_cmd(user, cmd): argument
86 return cmd
88 return ["su", "0"] + cmd
90 return ["run-as", user] + cmd
228 cmd = get_run_as_cmd(user,
231 device.shell(cmd)
/development/cmds/monkey/src/com/android/commands/monkey/
DMonkeyCommandEvent.java31 public MonkeyCommandEvent(String cmd) { in MonkeyCommandEvent() argument
33 mCmd = cmd; in MonkeyCommandEvent()
DMonkeyGetAppFrameRateEvent.java126 String cmd = String.format(GET_APP_FRAMERATE_TMPL, sActivityName); in injectEvent() local
128 p = Runtime.getRuntime().exec(cmd); in injectEvent()
132 cmd, status)); in injectEvent()
151 System.err.println("// Exception from " + cmd + ":"); in injectEvent()
/development/ndk/platforms/android-21/include/linux/dvb/
Dosd.h54 OSD_Command cmd; member
92 int cmd; member
/development/ndk/platforms/android-3/include/linux/raid/
Dmd_k.h180cmd) do { wait_queue_t __wait; init_waitqueue_entry(&__wait, current); add_wait_queue(&wq… argument
182 …ent_lock_irq(wq, condition, lock, cmd) do { if (condition) break; __wait_event_lock_irq(wq,… argument
/development/scripts/
Dsymbol.py37 cmd = ("CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core "
40 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True).stdout
192 cmd = [ToolPath("addr2line"), "--functions", "--inlines",
194 child = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
262 cmd = [ToolPath("objdump"),
285 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE).stdout
323 cmd = [ToolPath("c++filt")]
324 process = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)

123